/* Fuente */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 100px; /* Para que no tape el menú fijo */
    transition: padding-top 0.3s ease-in-out;
}

/* Menú navegación */
.main-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #252d32;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.main-nav-scrolled {
    background-color: #002a44;
    padding: 5px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    /* Ajuste para el tamaño normal del logo */
    height: 80px; /* Reducido de 100px */
    transition: height 0.3s ease-in-out;
}

.main-nav-scrolled .logo img {
    /* Ajuste para el tamaño del logo al hacer scroll */
    height: 50px; /* Reducido de 60px */
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #f57c00;
}

/* Responsive menú móvil */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .nav-container {
        height: 60px; /* Reducir altura del nav en móvil */
    }
    .logo img {
        height: 60px; /* Reducido de 70px para móvil */
    }
    .main-nav-scrolled .logo img {
        height: 40px; /* Reducido de 50px para scroll en móvil */
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #252d32;
        position: absolute;
        top: 60px; /* Ajustado a la nueva altura del nav */
        right: 0;
        width: 100%;
        text-align: center; /* Centra los enlaces del menú */
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        padding: 10px 0; /* Espaciado vertical para los enlaces */
    }
    #menu-toggle {
        display: block;
    }
}

/* Hero */
.hero {
    padding: 100px 20px 80px;
    text-align: center;
    background-color: #e3f2fd;
}

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.slogan {
    font-size: 1.5rem;
    color: #f57c00;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 80px 15px 60px; /* Reduce padding en móvil */
    }
    .hero-logo {
        max-width: 250px; /* Reduce el tamaño del logo en móvil */
    }
    .slogan {
        font-size: 1.2rem; /* Reduce el tamaño del slogan en móvil */
    }
}

/* Secciones generales */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Responsive General Section Padding */
@media (max-width: 768px) {
    .section {
        padding: 40px 15px; /* Reduce el padding general de las secciones en móvil */
    }
    h2 { /* Ajusta el tamaño de todos los H2 de las secciones */
        font-size: 2em; /* Puedes ajustar este valor */
    }
}

/* Carrusel un poco más grande */
.splide {
    margin-top: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.splide__slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

/* Responsive Carrusel */
@media (max-width: 768px) {
    .splide {
        margin-top: 40px; /* Reduce margen superior */
        max-width: 100%; /* Asegura que ocupe todo el ancho disponible */
        padding: 0 10px; /* Pequeño padding a los lados */
    }
    .splide__slide img {
        max-height: 300px; /* Reduce la altura máxima para móvil */
        object-fit: cover; /* Cambiado a cover para que llene el espacio si hay cortes ligeros */
    }
}

/* Galería 3 columnas más estética */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 12px;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    text-align: center;
}

.image-overlay p {
    font-size: 1em;
    text-align: center;
}

/* Responsive galería para móvil */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        gap: 25px; /* Reduce el espacio entre items */
        max-width: 90%; /* Ajusta el ancho para que tenga un poco de margen */
        margin: 30px auto; /* Reduce el margen */
    }
    .gallery-item img {
        max-height: 200px; /* Ajusta la altura máxima para que no sean tan grandes */
        object-fit: cover; /* Para asegurar que llenen el espacio sin desbordarse */
    }
    .image-overlay h3 {
        font-size: 1.1em; /* Reduce tamaño de título en overlay */
    }
    .image-overlay p {
        font-size: 0.9em; /* Reduce tamaño de párrafo en overlay */
    }
}

/* Quiénes Somos */
#quienes-somos {
    background-color: #fdfdfd;
    padding: 60px 20px; /* Mantenemos el padding para escritorio */
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 20px;
}

.team-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team-row.reverse {
    flex-direction: row-reverse;
}

.team-photo {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.team-photo img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-photo img:hover {
    transform: scale(1.05);
}

.team-text {
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 600px;
    text-align: left;
    color: #333;
}

.team-text h3 {
    font-size: 28px;
    color: #002a44;
    margin-bottom: 10px;
}

.team-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* Responsive ajustes para Quiénes Somos (MÁS PEQUEÑO) */
@media (max-width: 768px) {
    #quienes-somos {
        padding: 30px 10px; /* Reducido de 40px 15px */
    }
    .team-container {
        gap: 20px; /* Reducido de 30px */
    }
    .team-row,
    .team-row.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 15px; /* Reducido de 20px */
    }
    .team-photo img {
        max-width: 70%; /* Reducido de 80% para hacer la imagen más pequeña */
    }
    .team-text {
        padding: 0 0px; /* Eliminado el padding lateral si no es necesario */
    }
    .team-text h3 {
        font-size: 1.3rem; /* Reducido de 1.5rem */
    }
    .team-text p {
        font-size: 0.9em; /* Reducido de 1em */
        line-height: 1.4; /* Ligeramente más compacto */
    }
}

/* Contacto */
.contact-section {
    background-color: #fff3e0;
    padding: 80px 20px;
}

.contact-intro {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #555;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.contact-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.contact-item .icon-large {
    font-size: 2.8rem;
    color: #1976d2;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-item a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-item a:hover {
    color: #f57c00;
    border-color: #f57c00;
}

.contact-item h3,
.contact-item p {
    margin: 5px 0;
}

/* Contenedor responsivo para el mapa */
.map-responsive {
    position: relative;
    padding-bottom: 50%; /* Relación 2:1 para un mapa más compacto */
    height: 0;
    overflow: hidden;
    margin-top: 40px; /* Mantiene el margen superior */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Contacto */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }
    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .contact-item {
        padding: 20px;
    }
    .contact-item .icon-large {
        font-size: 2.2rem;
    }
    .contact-item h3 {
        font-size: 1.2rem;
    }
    .contact-item a {
        font-size: 1em;
    }
    .map-responsive {
        margin-top: 30px;
    }
}

/* Footer */
footer {
    background-color: #003f66;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}
/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 20px 15px; /* Reduce padding del footer */
        font-size: 0.9em; /* Reduce el tamaño del texto del footer */
    }
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    z-index: 2010;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #f57c00;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 2005;
    pointer-events: none;
}

.lightbox-nav-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
    pointer-events: auto;
}

.lightbox-nav-btn:hover {
    background-color: #f57c00;
    color: #ffffff;
}

.lightbox-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
    padding: 0 50px;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    margin: 0;
}

.lightbox-caption {
    color: #e0e0e0;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    padding: 0 20px;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 15px;
        max-width: 95vw;
        max-height: 95vh;
    }
    .lightbox-close {
        font-size: 2.2rem;
        top: 10px;
        right: 10px;
    }
    .lightbox-image-container {
        padding: 0 20px;
    }
    .lightbox-image-container img {
        max-height: 55vh;
    }
    .lightbox-nav-btn {
        font-size: 2rem;
        padding: 8px 12px;
    }
    .lightbox-caption {
        font-size: 1em;
        padding: 0 10px;
    }
}