:root{
    --primary:#78BE20;
    --primary-dark:#4F9F16;
    --primary-soft:#EEFBE5;

    --navy:#073B5F;
    --navy-dark:#061B35;
    --sky:#00A8E8;
    --gold:#FFB703;

    --white:#FFFFFF;
    --bg:#F8FAFC;
    --text:#0F172A;
    --muted:#64748B;
    --line:#E2E8F0;

    --shadow-sm:0 14px 35px rgba(15,23,42,.08);
    --shadow-md:0 24px 70px rgba(15,23,42,.14);
    --shadow-lg:0 34px 95px rgba(15,23,42,.20);

    --font:'Manrope','Poppins',Arial,sans-serif;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--font);
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
    line-height:1.65;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
select,
textarea{
    font-family:inherit;
}

.container{
    width:min(92%,1280px);
    margin:auto;
}

/* HEADER */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(226,232,240,.82);
    box-shadow:0 10px 35px rgba(15,23,42,.05);
}

.navbar-content{
    height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--primary-dark);
}

.logo img{
    height:58px;
    width:auto;
    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.05;
}

.logo-text strong{
    font-size:24px;
    font-weight:900;
    color:var(--primary-dark);
    letter-spacing:-.6px;
}

.logo-text span{
    margin-top:4px;
    font-size:10.5px;
    color:var(--navy);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.45px;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:26px;
}

.nav-menu a{
    color:var(--navy-dark);
    font-size:14px;
    font-weight:850;
    transition:.22s ease;
}

.nav-menu a:hover{
    color:var(--primary-dark);
}

.nav-cta{
    padding:13px 24px!important;
}

/* BOTONES */

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:white!important;
    padding:15px 28px;
    border-radius:999px;
    font-weight:900;
    border:0;
    cursor:pointer;
    box-shadow:0 18px 45px rgba(120,190,32,.32);
    transition:.25s ease;
    white-space:nowrap;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 26px 60px rgba(120,190,32,.42);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:999px;
    font-weight:900;
    color:var(--navy-dark);
    background:white;
    border:1.5px solid rgba(255,255,255,.9);
    box-shadow:0 12px 28px rgba(15,23,42,.14);
    transition:.25s ease;
    white-space:nowrap;
}

.btn-secondary:hover{
    transform:translateY(-3px);
    color:var(--primary-dark);
}

/* HERO */

.hero{
    min-height:100vh;
    padding:150px 0 90px;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(90deg,rgba(6,27,53,.82),rgba(6,27,53,.50),rgba(120,190,32,.22)),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=90') center/cover no-repeat;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 18% 25%,rgba(120,190,32,.32),transparent 28%),
        radial-gradient(circle at 84% 70%,rgba(255,183,3,.16),transparent 30%);
    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:110px;
    background:linear-gradient(180deg,rgba(255,255,255,0),#fff 88%);
}

.hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:58px;
    align-items:center;
}

.hero-content{
    max-width:790px;
    color:white;
}

.badge{
    display:inline-flex;
    align-items:center;
    padding:11px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.17);
    border:1px solid rgba(255,255,255,.26);
    color:white;
    font-size:13px;
    font-weight:850;
    backdrop-filter:blur(14px);
    margin-bottom:24px;
}

.hero h1{
    font-size:clamp(48px,7vw,90px);
    line-height:.96;
    letter-spacing:-2.8px;
    font-weight:950;
    margin-bottom:26px;
    color:white;
}

.hero h1 span{
    display:block;
    color:var(--gold);
    text-shadow:0 14px 45px rgba(255,183,3,.28);
}

.hero p{
    max-width:670px;
    font-size:18px;
    line-height:1.78;
    color:rgba(255,255,255,.92);
    margin-bottom:34px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:28px;
}

.hero-trust{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    max-width:660px;
}

.hero-trust div{
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.22);
    border-radius:22px;
    padding:17px;
    backdrop-filter:blur(12px);
}

.hero-trust strong{
    display:block;
    font-size:25px;
    color:white;
    font-weight:950;
}

.hero-trust span{
    display:block;
    color:rgba(255,255,255,.86);
    font-size:12.5px;
    font-weight:700;
}

.hero-quote-card{
    background:rgba(255,255,255,.96);
    border:1px solid rgba(255,255,255,.75);
    border-radius:34px;
    padding:34px;
    box-shadow:0 35px 95px rgba(2,8,23,.26);
}

.hero-quote-card span{
    color:var(--primary-dark);
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:1.2px;
    font-size:12px;
}

.hero-quote-card h3{
    color:var(--navy-dark);
    font-size:30px;
    line-height:1.12;
    margin:10px 0 22px;
    letter-spacing:-.8px;
    font-weight:950;
}

.hero-quote-card form{
    display:grid;
    gap:14px;
}

.hero-quote-card input,
.hero-quote-card select,
.hero-quote-card textarea,
.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    border:1px solid #DDE7F0;
    background:#FBFDFF;
    border-radius:17px;
    padding:15px 16px;
    font-size:14px;
    outline:none;
    color:var(--text);
    transition:.2s ease;
}

.hero-quote-card input:focus,
.hero-quote-card select:focus,
.hero-quote-card textarea:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(120,190,32,.16);
}

/* QUICK SEARCH */

.quick-search{
    margin-top:-50px;
    position:relative;
    z-index:6;
}

.search-card{
    background:white;
    border:1px solid var(--line);
    box-shadow:var(--shadow-md);
    border-radius:30px;
    padding:22px;
    display:grid;
    grid-template-columns:1fr 1fr 1fr auto;
    gap:16px;
    align-items:center;
}

.search-card div{
    padding:10px 16px;
    border-right:1px solid var(--line);
}

.search-card small{
    display:block;
    color:var(--primary-dark);
    font-size:11px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.9px;
    margin-bottom:5px;
}

.search-card strong{
    font-size:14.5px;
    color:var(--navy-dark);
    line-height:1.4;
}

/* SECCIONES */

.section,
.premium-destinations,
.testimonials-section,
.cta-section{
    padding:100px 0;
}

.section-title{
    max-width:810px;
    margin:0 auto 50px;
    text-align:center;
}

.section-title span,
.section-kicker{
    color:var(--primary-dark);
    font-size:12.5px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.section-title h2,
.school-grid h2{
    color:var(--navy-dark);
    font-size:clamp(34px,5vw,58px);
    line-height:1.08;
    letter-spacing:-1.2px;
    margin:12px 0 18px;
    font-weight:950;
}

.section-title p,
.school-grid p{
    color:var(--muted);
    font-size:17px;
    line-height:1.82;
}

/* DESTINOS */

.premium-destinations{
    background:white;
}

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

.premium-card{
    background:white;
    border:1px solid var(--line);
    border-radius:30px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.premium-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.premium-image{
    min-height:315px;
    padding:26px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:white;
    position:relative;
    overflow:hidden;
    background-size:cover!important;
    background-position:center!important;
}

.premium-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(6,27,53,.86),rgba(6,27,53,.10));
    z-index:1;
}

.premium-image span,
.premium-image h3{
    position:relative;
    z-index:2;
}

.premium-image span{
    font-size:12px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:1.4px;
    color:var(--gold);
}

.premium-image h3{
    font-size:38px;
    line-height:1;
    margin-top:8px;
    font-weight:950;
}

.cartagena{
    background:
        linear-gradient(135deg,rgba(6,27,53,.18),rgba(120,190,32,.18)),
        url('https://images.unsplash.com/photo-1583531352515-8884af319dc1?auto=format&fit=crop&w=900&q=85') center/cover;
}

.sanandres{
    background:
        linear-gradient(135deg,rgba(6,27,53,.18),rgba(120,190,32,.18)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=85') center/cover;
}

.eje{
    background:
        linear-gradient(135deg,rgba(6,27,53,.18),rgba(120,190,32,.18)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=900&q=85') center/cover;
}

.premium-body{
    padding:26px;
}

.premium-body p{
    color:var(--muted);
    line-height:1.75;
    margin-bottom:18px;
}

.premium-body a{
    color:var(--primary-dark);
    font-weight:950;
}

/* WHY */

.why-section{
    background:
        radial-gradient(circle at top left,rgba(120,190,32,.12),transparent 32%),
        linear-gradient(180deg,#ffffff,#f8fafc);
}

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

.why-card{
    background:white;
    border:1px solid var(--line);
    border-radius:28px;
    padding:30px;
    text-align:center;
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.why-icon{
    width:74px;
    height:74px;
    border-radius:24px;
    margin:0 auto 18px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:white;
    font-size:30px;
    box-shadow:0 18px 38px rgba(120,190,32,.24);
}

.why-card h3{
    color:var(--navy-dark);
    font-size:19px;
    margin-bottom:10px;
}

.why-card p{
    color:var(--muted);
    line-height:1.65;
    font-size:14.5px;
}

/* ESCOLARES */

.school-section{
    background:
        radial-gradient(circle at top left,rgba(120,190,32,.16),transparent 30%),
        linear-gradient(135deg,#F8FAFC,#FFFFFF);
}

.school-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:50px;
    align-items:center;
}

.features-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:30px 0;
    color:var(--navy-dark);
    font-weight:850;
}

.features-list div{
    background:white;
    border:1px solid var(--line);
    padding:14px 16px;
    border-radius:18px;
    box-shadow:0 10px 22px rgba(15,23,42,.04);
}

.stats-box{
    background:
        radial-gradient(circle at top right,rgba(255,255,255,.25),transparent 35%),
        linear-gradient(135deg,var(--primary),var(--primary-dark));
    border-radius:36px;
    padding:34px;
    display:grid;
    gap:18px;
    box-shadow:0 34px 80px rgba(120,190,32,.28);
}

.stats-box div{
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.24);
    border-radius:24px;
    padding:28px;
}

.stats-box strong{
    display:block;
    color:white;
    font-size:46px;
    font-weight:950;
}

.stats-box span{
    color:rgba(255,255,255,.92);
    font-weight:850;
}

/* STATS */

.stats-section{
    padding:90px 0;
    background:
        radial-gradient(circle at top left,rgba(120,190,32,.24),transparent 28%),
        linear-gradient(135deg,var(--navy-dark),var(--primary-dark));
}

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

.stat-item{
    text-align:center;
    padding:30px;
    border-radius:26px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
}

.stat-item h3{
    color:white;
    font-size:50px;
    font-weight:950;
}

.stat-item p{
    color:rgba(255,255,255,.88);
    margin-top:8px;
    font-weight:850;
}

/* TESTIMONIOS */

.testimonials-section{
    background:#F8FAFC;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.testimonial-card{
    background:white;
    border:1px solid var(--line);
    border-radius:28px;
    padding:30px;
    box-shadow:var(--shadow-sm);
}

.testimonial-card p{
    color:#334155;
    font-size:15.5px;
    line-height:1.82;
    margin-bottom:24px;
}

.testimonial-card strong{
    display:block;
    color:var(--navy-dark);
    font-size:17px;
    font-weight:950;
}

.testimonial-card span{
    display:block;
    color:var(--primary-dark);
    margin-top:5px;
    font-weight:850;
    font-size:13px;
}

/* CTA */

.cta-section{
    background:white;
}

.cta-box{
    background:
        radial-gradient(circle at top left,rgba(255,255,255,.26),transparent 32%),
        linear-gradient(135deg,var(--primary),var(--primary-dark));
    border-radius:40px;
    padding:72px 42px;
    text-align:center;
    color:white;
    box-shadow:0 34px 90px rgba(120,190,32,.32);
}

.cta-box span{
    color:white;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-size:12.5px;
}

.cta-box h2{
    font-size:clamp(34px,5vw,62px);
    line-height:1.08;
    margin:14px auto 18px;
    max-width:780px;
    color:white;
    font-weight:950;
}

.cta-box p{
    color:rgba(255,255,255,.92);
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-actions{
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
}

/* COTIZAR */

.page-hero{
    padding:170px 0 95px;
    background:
        linear-gradient(135deg,rgba(6,27,53,.74),rgba(120,190,32,.55)),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1800&q=90') center/cover no-repeat;
    color:white;
    text-align:center;
    position:relative;
}

.page-hero h1{
    font-size:clamp(42px,7vw,78px);
    line-height:1;
    margin:18px 0;
    font-weight:950;
    letter-spacing:-1.8px;
}

.page-hero p{
    max-width:760px;
    margin:auto;
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.8;
}

.quote-section{
    padding:100px 0;
    background:#F8FAFC;
}

.quote-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
    align-items:start;
}

.quote-info,
.quote-form{
    background:white;
    border:1px solid var(--line);
    border-radius:32px;
    padding:36px;
    box-shadow:var(--shadow-sm);
}

.quote-info h2{
    font-size:38px;
    line-height:1.12;
    margin-bottom:18px;
    color:var(--navy-dark);
}

.quote-info p{
    color:var(--muted);
    line-height:1.82;
}

.quote-benefits{
    display:grid;
    gap:12px;
    margin-top:26px;
    font-weight:850;
    color:var(--navy-dark);
}

.quote-form label{
    display:block;
    font-weight:950;
    font-size:12.5px;
    color:#334155;
    margin-bottom:8px;
    margin-top:16px;
}

.quote-form button{
    width:100%;
    border:0;
    margin-top:24px;
    cursor:pointer;
}

/* FOOTER */

.site-footer{
    background:
        radial-gradient(circle at top left,rgba(120,190,32,.18),transparent 30%),
        linear-gradient(135deg,#061B35,#073B5F);
    color:white;
    padding:80px 0 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:34px;
}

.site-footer h3,
.site-footer h4{
    margin-bottom:16px;
    color:white;
}

.site-footer h3{
    font-size:22px;
}

.site-footer h4{
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.site-footer p,
.site-footer a{
    display:block;
    color:rgba(255,255,255,.78);
    line-height:1.8;
    margin-bottom:8px;
}

.site-footer a:hover{
    color:#d7f7c2;
}

.footer-bottom{
    margin-top:60px;
    padding:22px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.14);
    color:rgba(255,255,255,.67);
    font-size:13px;
}

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:99999;
    background:#25D366;
    color:white!important;
    padding:15px 22px;
    border-radius:999px;
    font-weight:950;
    box-shadow:0 18px 45px rgba(37,211,102,.35);
}

/* RESPONSIVE */

@media(max-width:1100px){
    .hero-grid,
    .school-grid,
    .quote-grid{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
        margin:auto;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-trust{
        margin:auto;
    }

    .hero-quote-card{
        max-width:620px;
        margin:auto;
    }
}

@media(max-width:950px){
    .navbar-content{
        height:auto;
        padding:15px 0;
        flex-direction:column;
    }

    .nav-menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

    .search-card,
    .premium-grid,
    .why-grid,
    .stats-grid,
    .testimonials-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .search-card div{
        border-right:0;
        border-bottom:1px solid var(--line);
    }

    .features-list,
    .hero-trust{
        grid-template-columns:1fr;
    }

    .hero{
        padding-top:190px;
    }

    .page-hero{
        padding-top:190px;
    }
}

@media(max-width:620px){
    .container{
        width:min(92%,100%);
    }

    .logo{
        flex-direction:column;
        text-align:center;
        gap:8px;
    }

    .logo img{
        height:46px;
    }

    .logo-text strong{
        font-size:20px;
    }

    .logo-text span{
        font-size:9.5px;
    }

    .nav-menu a{
        font-size:13px;
    }

    .hero{
        min-height:auto;
        padding-top:200px;
        padding-bottom:80px;
    }

    .hero h1{
        font-size:42px;
        letter-spacing:-1.4px;
    }

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

    .hero-quote-card,
    .quote-info,
    .quote-form{
        padding:24px;
        border-radius:26px;
    }

    .section,
    .premium-destinations,
    .testimonials-section,
    .cta-section,
    .quote-section{
        padding:76px 0;
    }

    .section-title h2,
    .school-grid h2,
    .quote-info h2{
        font-size:34px;
    }

    .cta-box{
        padding:54px 24px;
        border-radius:30px;
    }

    .whatsapp-float{
        right:14px;
        bottom:14px;
        padding:13px 18px;
        font-size:13px;
    }
}
.destination-list{
    list-style:none;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin:18px 0 22px;
}

.destination-list li{
    background:var(--primary-soft);
    color:var(--navy-dark);
    border:1px solid rgba(120,190,32,.18);
    border-radius:14px;
    padding:10px 12px;
    font-size:13px;
    font-weight:850;
}
.footer-grid{
    align-items:start;
}

.footer-grid h3{
    font-size:28px;
    font-weight:900;
    margin-bottom:18px;
}

.footer-grid p,
.footer-grid a{
    font-size:15px;
}

.footer-grid a{
    transition:.2s ease;
}

.footer-grid a:hover{
    transform:translateX(4px);
}

.footer-bottom{
    font-weight:700;
}

.whatsapp-float{
    transition:.25s ease;
}

.whatsapp-float:hover{
    transform:translateY(-4px);
}