
        /* Estenedor Principal */

body{ 
	min-width: 100vh;
	background-image: url('bgbdy.jpg'); /* Tu imagen de fondo */
  
  background-repeat: no-repeat; /* Evita que se repita */
  background-size: cover; /* Cubre todo el espacio sin distorsionar */
	
		background-attachment: fixed;
	
}

  


        .documentos {
            width: 1300px;
            min-height: 100px;
            height: auto;
         /*   background-color: pink;*/
            display: flex;
            justify-content: space-around;
            padding: 20px 0;
            margin: 0 auto;
            font-family: Arial, sans-serif;
        }

        /* Estilo de los cuadros "areas" */
        .areas {
            width: 370px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Primera Parte: Imagen y Botón */
        .parte-superior {
            width: 370px;
            height: 250px;
            position: relative;
            box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
            border-radius: 15px 15px 0 0;
            overflow: hidden;
        }

        .img-principal {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .btn-leer-mas {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 100px;
            height: 30px;
            background-color: #5e1040;
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: background 0.3s;
        }

        .btn-leer-mas:hover {
			transform: scale(1.2);
			 transition: transform 0.3s ease-in-out;
            background-color: #4e5c59;
        }

        /* Imagen flotante central (Logo) */
        .logo-flotante {
            position: absolute;
            top: 215px; /* Mitad de la unión */
            right: 10px;
            width: 100px;
            height: 70px;
            z-index: 10;
        }

        /* Segunda Parte: Contenido */
        .parte-inferior {
            width: 370px;
            min-height: 150px;
            background-color: #edeae1;
            padding: 20px;
            box-sizing: border-box;
            box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
            cursor: pointer;
            text-decoration: none;
            display: block;
            transition: background 0.3s;
        }

        .parte-inferior:hover {
            background-image: url('bgbtn.jpg');
            background-size: cover;
        }

        .titulo {
            color: #482c28;
            font-weight: bold;
            text-align: left;
            margin: 0 0 10px 0;
            font-size: 1.2em;
        }

        .descripcion {
            color: #4d5b58;
            text-align: left;
            font-size: 16px;
            margin-bottom: 10px;
        }

        hr {
            border: 0;
            border-top: 1px solid #ccc;
            margin: 10px 0;
        }

        .texto-abrir {
			font-weight: bold; /* Opción más común */
			color: #41504d;			
            font-size: 17px;
        }
