* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #f0f7ff;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    overflow-x: hidden;
}

/* Header y Navegación */
.header {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin-bottom: 20px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 20px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 24px;
    color: #000;
    text-decoration: none;
}

.logo svg {
    fill: #153146;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #0066cc;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0066cc;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.book-trip-btn {
    background-color: #153146;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.book-trip-btn:hover {
    background-color: #0e2231;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero-container {
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    min-height: 700px;
    position: relative;
    margin-bottom: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d9eaf9 0%, #a8c6df 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 80px;
    position: relative;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    color: #153146;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #0d62d0;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.hero-images {
    flex: 1;
    position: relative;
    height: 100%;
}

.hero-main-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 1;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
    z-index: 2;
}

.floating-image-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
}

.floating-image-2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 15%;
}

.floating-image-3 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 5%;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MVV Section */
.mvv-section {
    width: 100%;
    max-width: 1400px;
    padding: 100px 40px;
    text-align: center;
    background-color: white;
    border-radius: 30px;
    margin-bottom: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.mvv-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: left;
    position: relative;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.05);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.mvv-card.mision {
    border-top: 5px solid #1a73e8;
}

.mvv-card.vision {
    border-top: 5px solid #34a853;
}

.mvv-card.valores {
    border-top: 5px solid #fbbc05;
}

.mvv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(26, 115, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mvv-card.vision .mvv-icon {
    background-color: rgba(52, 168, 83, 0.1);
}

.mvv-card.valores .mvv-icon {
    background-color: rgba(251, 188, 5, 0.1);
}

.mvv-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #153146;
}

.mvv-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mvv-description ul {
    padding-left: 20px;
    margin-top: 15px;
    list-style-type: none;
}

.mvv-description li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.mvv-description li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1a73e8;
}

.mvv-card.vision .mvv-description li::before {
    background-color: #34a853;
}

.mvv-card.valores .mvv-description li::before {
    background-color: #fbbc05;
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 100px;
    position: relative;
}

.gallery-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 40px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Objectives Section */
.objectives-section {
    width: 100%;
    max-width: 1400px;
    padding: 100px 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.objectives-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.objectives-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.objectives-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.objectives-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.objectives-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.objectives-list {
    list-style-type: none;
}

.objectives-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: #444;
    line-height: 1.6;
    font-size: 16px;
}

.objectives-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%231a73e8"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    max-width: 1400px;
    padding: 100px 40px;
    margin-bottom: 100px;
    text-align: center;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    color: #000;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    min-width: 350px;
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: left;
    scroll-snap-align: start;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-rating {
    color: #fbbc05;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.testimonial-author-info p {
    font-size: 14px;
    color: #666;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.float-animation-delay {
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .hero-main-image {
        width: 500px;
        height: 500px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header {
        padding: 15px 20px;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-main-image {
        width: 400px;
        height: 400px;
    }
    
    .floating-image-1, .floating-image-3 {
        display: none;
    }
    
    .floating-image-2 {
        width: 200px;
        height: 200px;
    }
    
    .objectives-section {
        flex-direction: column;
    }
    
    .objectives-image {
        height: 400px;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-container {
        height: auto;
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 80px;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .hero-text {
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-images {
        width: 100%;
    }
    
    .hero-main-image {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 400px;
        margin-bottom: 20px;
    }
    
    .floating-image-2 {
        position: relative;
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    
    .section-title, .objectives-title, .experience-title, .testimonials-title, .subscribe-title {
        font-size: 36px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
    }
}
/* Contenedor principal del logo */
.logo {
    display: inline-block; /* Ajusta al contenido */
    box-sizing: border-box;
}

/* Enlace contenedor */
.logo a {
    display: block;
    line-height: 0; /* Elimina espacio inferior */
}

/* Estilos de la imagen del logo */
.logo img {
    /* Tamaño fijo pequeño */
    width: 50px; /* AJUSTA ESTE VALOR SEGÚN NECESITES */
    height: auto; /* Mantiene proporción */
    
    /* Optimización de imagen */
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    
    /* Mejoras de rendimiento */
    max-width: 100%;
    display: block;
    border: none;
    
    /* Transición suave para hover (opcional) */
    transition: transform 0.2s ease;
}

/* Efecto hover sutil */
.logo img:hover {
    transform: scale(1.05); /* Crecimiento mínimo al pasar mouse */
    opacity: 0.9;
}
/* Contenedor del video - Mismos estilos que tu imagen original */
.objectives-image {
    width: 100%;
    max-width: 100%; /* Conserva el ancho máximo original */
    height: auto; /* Altura flexible */
    aspect-ratio: 16/9; /* Relación de aspecto (ajusta según necesites) */
    border-radius: 8px; /* Bordes redondeados igual que la imagen */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Sombra idéntica */
    background-color: #000; /* Fondo negro para mientras carga */
}

/* Estilos del elemento de video */
.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre todo el espacio manteniendo relación */
    display: block;
}

/* Media queries para mantener responsividad */
@media (max-width: 768px) {
    .objectives-image {
        max-height: 300px; /* Igual que tu versión móvil para imágenes */
    }
}
 