body {    font-family: Arial, sans-serif;    margin: 20px;    background-color: #f7f9fc;    color: #333;}header {    display: flex;    align-items: center;    gap: 20px;    padding: 40px;    border-radius: 10px;    position: relative;    overflow: hidden; /* IMPORTANTE: para que el overlay y fondo no se corten */    background-image: url("mar.png"); /* ajusta según ruta real */    background-size: cover;    background-position: center;    background-repeat: no-repeat;}/* Overlay oscuro para que se vea el texto */header::before {    content: "";    position: absolute;    top: 0;    left: 0;    width: 100%;    height: 100%;    background: rgba(0,0,0,0.4); /* oscurece el fondo */    border-radius: 10px;    z-index: 0;}/* Texto y logo por encima del overlay */header .logo,header .titles {    position: relative;    z-index: 1;}/* Estilos del texto */.titles h1 {    margin: 0;    font-size: 3em;    color: white;    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);}.titles h3 {    margin: 0;    font-size: 1.2em;    font-weight: normal;    color: #ddd;    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);}/* Logo */.logo {    width: 300px; /* ajusta a tu gusto */    height: auto;}nav {    margin-bottom: 30px;    font-size: 1.1em;}nav a {    margin-right: 15px;    text-decoration: none;    color: #2c3e50;}nav a:hover {    text-decoration: underline;}section {    margin-bottom: 40px;    background-color: #fff;    padding: 20px;    border-radius: 10px;    box-shadow: 0 0 10px rgba(0,0,0,0.05);}.figure {    margin-bottom: 30px;    text-align: center;}.figure p {    font-weight: bold;    margin-bottom: 5px;}.figure img {    border: 1px solid #ccc;    max-width: 100%;    height: auto;}figcaption {    font-size: 0.9em;    color: #555;    margin-top: 5px;}footer {    margin-top: 50px;    text-align: center;    color: #777;    font-size: 0.9em;}/* ================= Team Section ================= *//* Contenedor del equipo */.team-container {    display: flex;    flex-direction: column; /* Lista vertical */    gap: 15px; /* Separación entre miembros */}/* Cada miembro */.team-member {    display: flex;    align-items: center;    gap: 15px;    padding: 10px;    border-radius: 8px;    border: 1px solid #ccc;    background-color: #f9f9f9;    cursor: default;}/* Foto del miembro */.team-member img.team-photo {    width: 100px;    height: 100px;    object-fit: cover;    border-radius: 50%;    border: 2px solid #2c3e50;    cursor: pointer;    flex-shrink: 0;}/* Información del miembro al lado derecho */.team-info {    display: flex;    flex-direction: column;    gap: 3px;}/* Nombre destacado */.team-info h3 {    margin: 0;    font-size: 1.1em;    font-weight: bold;}/* Párrafos de info */.team-info p {    margin: 0;    font-size: 0.95em;}/* Modal */.modal {    display: none;    position: fixed;    z-index: 100;    left: 0;    top: 0;    width: 100%;    height: 100%;    overflow: auto;    background-color: rgba(0,0,0,0.5);}.modal-content {    background-color: #fff;    margin: 10% auto;    padding: 20px;    width: 90%;    max-width: 500px;    border-radius: 10px;    position: relative;}.close {    color: #aaa;    float: right;    font-size: 28px;    font-weight: bold;    cursor: pointer;}.close:hover {    color: #000;}/* Responsive: en pantallas pequeñas, la info va debajo de la foto */@media (max-width: 600px) {    .team-member {        flex-direction: column;        align-items: center;        text-align: center;    }    .team-info {        align-items: center;    }}/* ============================= *//* FIGURES GALLERY (Thumbnails) *//* ============================= */.figures-description {    margin-bottom: 20px;    font-size: 1em;    color: #444;    text-align: justify;}.figures-gallery {    display: flex;    flex-wrap: wrap;    gap: 25px;    justify-content: center;}.figures-gallery .figure {    flex: 1 1 220px;    max-width: 260px;    text-align: center;}.thumbnail {    width: 100%;    max-width: 260px;    height: auto;    border-radius: 8px;    border: 1px solid #ccc;    cursor: pointer;    transition: transform 0.3s ease, box-shadow 0.3s ease;}.thumbnail:hover {    transform: scale(1.05);    box-shadow: 0 8px 20px rgba(0,0,0,0.15);}.figures-gallery .figure p {    margin-top: 8px;    font-size: 0.95em;    font-weight: normal;    color: #555;}/* ============================= *//* IMAGE MODAL (Lightbox Style) *//* ============================= */#imgModal {    display: none;    position: fixed;    z-index: 1000;    padding-top: 60px;    left: 0;    top: 0;    width: 100%;    height: 100%;    background-color: rgba(0,0,0,0.9);}#imgModal img {    margin: auto;    display: block;    max-width: 90%;    max-height: 85%;    border-radius: 8px;}#modalCaption {    text-align: center;    color: #fff;    margin-top: 15px;    font-size: 1em;}#imgModal .modal-close {    position: absolute;    top: 30px;    right: 45px;    color: #fff;    font-size: 40px;    font-weight: bold;    cursor: pointer;    transition: 0.3s;}#imgModal .modal-close:hover {    color: #ccc;}#partners {    background-color: #ffffff; /* fondo blanco */    padding: 10px 0;    overflow: hidden; /* ya no necesitamos scroll horizontal */}.partners-logos {    display: flex;           /* flex normal, no inline-flex */    flex-wrap: wrap;         /* permite varias filas */    justify-content: center; /* centra las filas horizontalmente */    gap: 40px 30px;          /* separación: fila y columna */    padding: 0 20px;}.partners-logos img {    height: 60px;    width: auto;    object-fit: contain;    transition: transform 0.3s ease;}.partners-logos img:hover {    transform: scale(1.2);    transform-origin: center;}/* Responsive: reduce tamaño en móviles */@media (max-width: 768px) {    .partners-logos img {        height: 45px;    }    .partners-logos {        gap: 25px 15px;    }}