/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 55px;
    display: block;
}

.header .whatsapp {
    padding: 12px 22px;
    border-radius: 8px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(3,42,94,0.45), rgba(3,42,94,0.55)),
    url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* OVERLAY EXTRA */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
    rgba(255,255,255,0.06),
    transparent 60%);
    pointer-events: none;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    animation: heroFade 1.2s ease;
}

/* TAG */
.hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    color: #FFAB00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* TITLE */
.hero-title {
    font-size: 64px;
    line-height: 1.08;
    margin-bottom: 24px;
    font-weight: 700;
    text-wrap: balance;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 38px;
    color: rgba(255,255,255,0.92);
    max-width: 620px;
}

/* BUTTON */
.big-btn {
    padding: 18px 34px;
    font-size: 17px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    transition: transform 0.25s ease,
    box-shadow 0.25s ease;
}

.big-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}

/* HERO ANIMATION */
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        min-height: 92vh;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.6;
    }

    .big-btn {
        width: 100%;
    }
}

/* BUTTONS */
.btn {
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: #00a859;
    color: white;
}

.whatsapp {
    background: #25D366;
    color: white;
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

/* PAYUNIA */
.payunia {
    background: #f7f7f7;
}

.payunia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: #FFAB00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.payunia h2 {
    font-size: 40px;
    color: #032A5E;
    margin-bottom: 18px;
}

.payunia p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.features {
    list-style: none;
    margin-bottom: 28px;
}

.features li {
    margin-bottom: 10px;
    font-weight: 500;
}

.features li::before {
    content: "✓";
    color: #00a859;
    font-weight: 800;
    margin-right: 8px;
}

.payunia-image img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .payunia-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section {
        padding: 55px 0;
    }

    .payunia h2 {
        font-size: 32px;
    }

    .payunia p {
        font-size: 16px;
    }
}

.excursiones {
    background: #f9f9f9;
}

.excursiones h2 {
    margin-bottom: 50px;
}

.excursiones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.excursion-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.excursion-card:hover {
    transform: translateY(-8px);
}

.excursion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENIDO */
.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #032A5E;
}

.card-content p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #555;
}

/* BOTÓN */
.excursion-card .btn {
    width: 100%;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .excursiones-grid {
        grid-template-columns: 1fr;
    }
}

.diferencial {
    background: #032A5E;
    color: white;
}

.diferencial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diferencial h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.diferencial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.diferencial-list {
    list-style: none;
    margin-bottom: 30px;
}

.diferencial-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

.diferencial-list li::before {
    content: "✓";
    color: #FFAB00;
    font-weight: bold;
    margin-right: 10px;
}

.diferencial-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .diferencial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .diferencial h2 {
        font-size: 28px;
    }
}

/* PAQUETES */
.paquetes {
    background: #ffffff;
}

.paquetes .container {
    text-align: center;
}

.paquetes .eyebrow {
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

.paquetes h2 {
    display: block;
    margin: 0 auto 16px;
    font-size: 36px;
    line-height: 1.2;
    color: #032A5E;
    text-align: center;
}

.section-subtitle {
    display: block;
    max-width: 760px;
    margin: 0 auto 45px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}

.paquete-card {
    position: relative;
    background: #f7f7f7;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.paquete-card.destacado {
    background: #032A5E;
    color: white;
}

.paquete-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: #032A5E;
}

.paquete-card.destacado h3 {
    color: white;
}

.paquete-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.paquete-card ul {
    list-style: none;
    margin-bottom: 26px;
    padding-left: 0;
}

.paquete-card li {
    margin-bottom: 10px;
    font-size: 14px;
}

.paquete-card li::before {
    content: "✓";
    color: #00a859;
    font-weight: 800;
    margin-right: 8px;
}

.paquete-card.destacado li::before {
    color: #FFAB00;
}

.badge {
    display: inline-block;
    background: #FFAB00;
    color: #032A5E;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.paquete-card .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .paquetes h2 {
        font-size: 30px;
    }

    .paquetes-grid {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        margin-bottom: 35px;
    }
}

.paquete-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.paquete-card ul {
    flex-grow: 1;
}

.paquete-card .btn {
    margin-top: auto;
}

/* TESTIMONIOS */
.testimonios {
    background: #f7f7f7;
    text-align: center;
}

.testimonios h2 {
    margin-bottom: 35px;
    color: #032A5E;
}

.testimonios-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.slider-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: white;
    border-radius: 18px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.stars {
    color: #FFAB00;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 18px;
}

.testimonial-card h4 {
    color: #032A5E;
    font-size: 15px;
    font-weight: 700;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #032A5E;
    color: white;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 42px;
}

.slider-btn:hover {
    background: #FFAB00;
    color: #032A5E;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 26px 0;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
}

.slider-dot.active {
    background: #032A5E;
}

.outline-google {
    display: inline-block;
    border: 2px solid #032A5E;
    color: #032A5E;
    background: transparent;
}

.outline-google:hover {
    background: #032A5E;
    color: white;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 600px) {
    .testimonios-slider {
        gap: 8px;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .slider-btn {
        display: none;
    }
}

/* CTS */
.cta-final {
    background: linear-gradient(rgba(3,42,94,0.9), rgba(3,42,94,0.9)),
              url('../img/cta.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
}

.cta-final h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.big {
    font-size: 18px;
    padding: 16px 32px;
}

/* MOBILE */
@media (max-width: 768px) {
    .cta-final h2 {
        font-size: 28px;
    }

    .cta-final p {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background: #f7f7f7;
    color: #032A5E;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #032A5E;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: #FFAB00;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.socials a {
    display: inline-block;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(80,80,80,0.2);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .socials a {
        display: block;
        margin: 5px 0;
    }
}

/* WHATSAPP FLOAT */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.25s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
    display: block;
}

/* ANIMACIONES SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SCROLL SUAVE + OFFSET HEADER */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #032A5E;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #FFAB00;
}

/* HAMBURGUESA */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color: #032A5E;
}

/* MOBILE */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        gap: 20px;
        display: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    .nav.active {
        display: flex;
    }
}

/* Badge Payunia */
.payunia-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,171,0,0.12);
    color: #FFAB00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}