* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
}

/* =======================
   NAVBAR
======================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    z-index: 100;
}

/* LOGO */
.logo_agencia img {
    height: 55px;
    width: auto;
}

/* MENÚ */
.navbar nav {
    display: flex;
    gap: 25px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-weight: 550;
    position: relative;
}

/* =======================
   DROPDOWN MENU
======================= */

.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* CONTENEDOR PRINCIPAL */
.dropdown {
    position: relative;
}

/* =======================
   DROPDOWN NIVEL 1
======================= */

.dropdown-menu {
    position: absolute;
    top: 105%;
    left: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    min-width: 240px;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    overflow: visible; /* CLAVE PARA SUBMENÚ */
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    z-index: 999;
}

/* LINKS */
.dropdown-menu a {
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    display: block;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: #c9a227;
    color: #000;
}

/* MOSTRAR NIVEL 1 */
.dropdown:hover > .dropdown-menu {
    display: flex;
}

/* EVITAR LINEA EN PADRE */
.dropdown > a::after {
    display: none;
}

/* =======================
   EFECTO HOVER LINKS NAV
======================= */

.navbar nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #c9a227;
    transition: width 0.3s ease;
}

.navbar nav a:hover::after {
    width: 100%;
}

/* =======================
   SUB DROPDOWN NIVEL 2
======================= */

.sub-dropdown {
    position: relative;
}

/* Área completa de hover */
.sub-dropdown > a {
    display: block;
    width: 100%;
    padding: 12px 15px;
    color: white;
}

/* Flecha indicadora */
.sub-dropdown > a::after {
    content: "▸";
    float: right;
}

/* Submenú lateral */
.sub-dropdown > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0; /* MUY IMPORTANTE (evita perder hover) */
    border-radius: 8px;
}

/* MOSTRAR NIVEL 2 */
.sub-dropdown:hover > .dropdown-menu {
    display: flex;
}



/* =======================
    REDES SOCIALES
======================= */
.social {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* TELÉFONO */
.social .phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    margin-right: 15px;
}

.social .phone i {
    font-size: 14px;
}

/* NUMEROS */
.phone-numbers {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.social .phone span {
    font-size: 14px;
    white-space: nowrap;
}

/* HOVER TELÉFONO */
.social .phone:hover {
    color: #c9a227;
}

/* ICONOS */
.social a {
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social a:hover {
    transform: scale(1.2);
    color: #c9a227;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .navbar {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        display: none !important;
        overflow-y: auto;
        z-index: 1000;
    }

    .menu.active {
        display: flex !important;
    }

    .menu a {
        font-size: 18px;
        width: 100%;
    }

    /* 🔴 Desactivar hover en móvil (nivel 1) */
    .dropdown:hover > .dropdown-menu {
        display: none !important;
    }

    /* 🔴 Desactivar hover en móvil (nivel 2) — ESTO FALTABA */
    .sub-dropdown:hover > .dropdown-menu {
        display: none !important;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.08);
        box-shadow: none;
        margin-top: 10px;
        display: none !important;
    }

    /* Mostrar dropdown cuando está activo */
    .dropdown.active > .dropdown-menu {
        display: flex !important;
    }

    .social {
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        gap: 20px;
        z-index: 1001;
    }

    .phone-numbers {
        display: none;
    }

    /* Submenú nivel 2 oculto */
    .sub-dropdown > .dropdown-menu {
        display: none !important;
        margin-left: 15px;
        margin-top: 8px;
        background: rgba(255,255,255,0.12);
        border-radius: 8px;
    }

    /* Mostrar submenú cuando está activo */
    .sub-dropdown.active > .dropdown-menu {
        display: flex !important;
    }

    /* Flecha móvil */
    .sub-dropdown > a::after {
        content: "▾";
        float: right;
    }

}


/* =======================
   HERO
======================= */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* contenedor del video YouTube */
.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.video-bg iframe {
    width: 100%;
    height: 100%;
}

/* capa oscura encima del video */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 5.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin: 15px 0 30px;
}



/* =======================
   CONFIANZA
======================= */
.trust {
    padding: 90px 20px;
    background: #f9f9f9;
    text-align: center;
}

.trust h2 {
    font-size: 28px;
    margin-bottom: 50px;
    color: #222;
}

/* INDICADORES */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.trust-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-6px);
}

.trust-item i {
    font-size: 34px;
    color: #2f444a;
    margin-bottom: 15px;
}

.trust-item strong {
    display: block;
    font-size: 20px;
    color: #222;
}

.trust-item span {
    font-size: 14px;
    color: #666;
}

/* DESTACADO */
.trust-item.highlight i {
    color: #c9a227;
}

/* LOGOS */
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 55px;
    opacity: 1;
    transition: transform 0.3s ease;
}

.trust-logos img:hover {
    transform: scale(1.06);
}

/* =======================
   QUIÉNES SOMOS
======================= */
.about {
    padding: 100px 20px;
    background: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMÁGENES */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

.img-large {
    grid-row: span 2;
}

/* CONTENIDO */
.about-content h2 {
    font-size: 1.8rem;              /* antes 34px */
    font-weight: 800;
    color: #8a4b00;                 /* mejor contraste */
    background-color: #fde7c8;      /* banda de color */
    display: inline-block;
    padding: 10px 24px;
    border-radius: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h3 {
    font-size: 1.3rem;              /* antes 22px */
    color: #ff9800;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}


.about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-content ul li {
    margin-bottom: 12px;
    color: #444;
    position: relative;
    padding-left: 22px;
}

.about-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2f444a;
}

/* BOTÓN */
.btn-about {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    border: 2px solid #2f444a;
    color: #2f444a;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #2f444a;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .img-large {
        grid-row: auto;
    }
}

/* =======================
   TOURS POR DÍAS
======================= */
.tours-days {
    padding: 90px 60px;
    background: #f9f9f9;
    text-align: center;
}

.tours-days h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f1f1f;
    background-color: #ffffff;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tours-days .subtitle {
    font-size: 18px;
    color: #070400;
    margin-bottom: 50px;
}

/* CONTENEDOR GENERAL */
.days-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

/* GRID */
.days-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    width: 100%;
}

/* CARD */
.day-card {
    position: relative;
    background: linear-gradient(180deg, #2f454e, #072335);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* LINK QUE ENVUELVE TODA LA CARD */
.day-card-link {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

/* HOVER CARD */
.day-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* IMAGEN */
.day-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

/* CONTENIDO */
.day-content {
    padding: 18px;
    color: #1a1919;
    position: relative;
    z-index: 2;
}

.day-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1919;
    background-color: #ffffff;
    display: block;
    padding: 6px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.day-content span {
    font-size: 14px;
    opacity: 0.9;
    color: #ffffff;
}

/* OVERLAY HOVER "VER PROGRAMA" */
.day-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.day-card:hover .day-hover {
    opacity: 1;
}

/* FLECHAS */
.arrow {
    background: #ffffff;
    border: none;
    font-size: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.arrow:hover {
    background: #f2f2f2;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .days-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .days-wrapper {
        flex-direction: column;
    }

    .arrow {
        display: none; /* opcional en móvil */
    }
}

@media (max-width: 600px) {
    .days-grid {
        grid-template-columns: 1fr;
    }
}




/* =======================
   TOURS POPULARES
======================= */
.tours {
    padding: 90px 60px;
    background: #f9f9f9;
    text-align: center;
}

.tours h2 {
    font-size: 1.5rem;                 /* antes 36px */
    font-weight: 800;
    color: #1f1f1f;                 /* texto */
    background-color: #ffffff;      /* banda */
    display: inline-block;
    padding: 12px 30px;
    border-radius: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tours .subtitle {
    color: #777;
    font-size: 18px;
    margin-bottom: 50px;
}



.tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 arriba y 3 abajo */
    gap: 35px;
}

/* CARD */
.tour-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
}

.tour-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.tour-content {
    padding: 25px;
    text-align: left;
}

.tour-meta {
    font-size: 14px;
    color: #00bfa6;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.tour-card h3 {
    font-size: 20px;
    margin: 10px 0;
    color: #222;
}

.tour-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.tour-info {
    font-size: 14px;
    color: #00bfa6;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-footer strong {
    color: #222;
    font-size: 15px;
}

.btn-tour {
    background: #ff9800;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-tour:hover {
    background: #e68900;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
}

/* =======================
   TESTIMONIOS
======================= */
.testimonials {
    padding: 90px 60px;
    background: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.5rem;                 /* antes 34px */
    font-weight: 800;
    color: #8a4b00;
    background-color: #fde7c8;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials .subtitle {
    font-size: 18px;
    color: #777;
    margin-bottom: 50px;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.stars {
    color: #ffb400;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card strong {
    color: #222;
}

.btn-reviews {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 28px;
    background: #ff9800;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-reviews:hover {
    background: #e68900;
    transform: translateY(-2px);
}

.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 35px 30px 30px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    text-align: center;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: -60px auto 15px;
}

.avatar.female {
    background: #fde2e2;
}

.avatar.male {
    background: #e2edfd;
}

.avatar.neutral {
    background: #eeeeee;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* =======================
   WHATSAPP FLOTANTE
======================= */
.whatsapp {
    position: relative; /* 🔴 único cambio: antes fixed */
    width: 62px;
    height: 62px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 200;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* HOVER */
.whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 18px 35px rgba(0,0,0,0.45);
}

/* ANIMACIÓN SUAVE */
.whatsapp::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* CONTENEDOR GENERAL */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 200;
}

/* MENSAJE */
.whatsapp-msg {
    background: #fff;
    color: #222;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    white-space: nowrap;
    animation: floatIn 0.6s ease;
}

.whatsapp-msg strong {
    display: block;
    font-weight: 600;
}

.whatsapp-msg span {
    font-size: 12px;
    color: #25D366;
}

/* ANIMACIÓN MENSAJE */
@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 15px 20px;
    }
}

/* =======================
   FOOTER GENERAL
======================= */
.footer {
    background: #2f444a;
    color: #fff;
    padding: 40px 80px 25px;
    font-size: 14px;
}

/* LOGO SUPERIOR */
.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-top img {
    max-width: 220px;
}

/* LÍNEA DIVISORIA */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 45px;
}

/* CONTENEDOR */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* COLUMNAS */
.footer-col h4 {
    color: #f5a623;
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-col p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-col i {
    color: #2bd6c4;
    margin-right: 8px;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #f5a623;
}

.footer-time {
    color: #2bd6c4;
    margin-top: 15px;
}

/* =======================
   REDES SOCIALES
======================= */
.footer-social {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social a {
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
    color: #f5a623;
}

/* =======================
   COPYRIGHT
======================= */
.footer-bottom {
    text-align: center;
    margin-top: 35px;
    font-size: 13px;
    color: #bfcfd3;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
    .footer {
        padding: 40px 30px;
        text-align: center;
    }
}


