/* =========================
   BASE
========================= */

:root {
    --dark: #111310;
    --dark-2: #191b17;
    --cream: #f4f1e9;
    --white: #ffffff;
    --gray: #777b74;
    --line: rgba(0,0,0,.12);
    --green: #c9e640;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--cream);
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(90%, var(--max-width));
    margin: auto;
}


/* =========================
   HEADER
========================= */

.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.nav {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--green);
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    font-size: 13px;
    font-weight: 600;
    opacity: .8;
    transition: .3s;
}

.menu a:hover {
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.lang-btn {
    border: 0;
    background: none;
    color: white;
    cursor: pointer;
    opacity: .45;
    font-weight: 700;
}

.lang-btn.active {
    opacity: 1;
    color: var(--green);
}

.btn-whatsapp {
    background: var(--green);
    color: var(--dark);
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.whatsapp-icon {
    margin-right: 6px;
}

.menu-toggle {
    display: none;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: white;

    background:
        url("images/hero.png")
        center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10,12,9,.88) 0%,
            rgba(10,12,9,.55) 45%,
            rgba(10,12,9,.12) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--green);
}

.hero h1 {
    font-size: clamp(55px, 7vw, 105px);
    line-height: .92;
    letter-spacing: -6px;
    max-width: 950px;
    margin-bottom: 35px;
}

.hero-content > p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 570px;
    color: rgba(255,255,255,.72);
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 17px 26px;
    border-radius: 50px;
    background: var(--green);
    color: var(--dark);
    font-weight: 800;
    font-size: 13px;
}

.btn-secondary {
    padding: 17px 26px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.4);
    font-weight: 600;
    font-size: 13px;
}

.hero-info {
    position: absolute;
    right: 5%;
    bottom: 45px;
    z-index: 2;
    display: flex;
    gap: 55px;
}

.hero-info small {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 8px;
}

.hero-info strong {
    font-size: 12px;
    line-height: 1.6;
}


/* =========================
   COMMON
========================= */

.section-number {
    font-size: 11px;
    font-weight: 800;
    opacity: .45;
}

.eyebrow {
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.light {
    color: var(--green);
}

.section-header {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    margin-bottom: 65px;
}

.section-header h2 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -4px;
}


/* =========================
   INTRO
========================= */

.intro {
    padding: 130px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
}

.intro h2 {
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -4px;
}

.intro-grid > div:last-child p {
    margin-top: 35px;
    max-width: 600px;
    color: var(--gray);
    line-height: 1.8;
}


/* =========================
   SERVICES
========================= */

.services {
    padding: 120px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--cream);
    overflow: hidden;
}

.service-image {
    height: 390px;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.025);
}

/* Reemplazar por imágenes reales */

.image-tourism {
    background: #cacbc5 url("images/turismo.png") center/cover;
}

.image-wedding {
    background: #cacbc5 url("images/matrimonios.png") center/cover;
}

.image-party {
    background: #cacbc5 url("images/despedidas.png") center/cover;
}

.image-family {
    background: #cacbc5 url("images/familiares.png") center/cover;
}

.service-content {
    padding: 30px;
}

.service-content span {
    font-size: 10px;
    opacity: .5;
}

.service-content h3 {
    margin: 14px 0;
    font-size: 27px;
    letter-spacing: -1px;
}

.service-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 14px;
}


/* =========================
   TRIPS
========================= */

.trips {
    background: var(--dark);
    color: white;
}

.trips-grid {
    min-height: 750px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.trips-image {
    padding: 70px 70px 70px 0;
   
}

.trips-photo {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-placeholder span {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: .4;
}

.trips-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}

.trips-content h2 {
    margin-top: 35px;
    font-size: clamp(45px, 5vw, 75px);
    line-height: 1;
    letter-spacing: -4px;
}

.trips-content > p:not(.eyebrow) {
    max-width: 500px;
    margin: 35px 0;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
}

.text-link {
    color: var(--green);
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 800;
}


/* =========================
   COVERAGE
========================= */

.coverage {
    padding: 130px 0;
}

.coverage-title h2 {
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -5px;
    margin: 35px 0 80px;
}

.coverage-grid {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.coverage-item {
    padding: 45px 40px 45px 0;
    border-right: 1px solid var(--line);
}

.coverage-item + .coverage-item {
    padding-left: 40px;
}

.coverage-item:last-child {
    border-right: none;
}

.coverage-item strong {
    font-size: 10px;
    color: var(--gray);
}

.coverage-item h3 {
    font-size: 23px;
    margin: 25px 0 15px;
}

.coverage-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   HOW
========================= */

.how {
    padding: 120px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--line);
}

.step {
    padding: 50px 40px 50px 0;
    border-right: 1px solid var(--line);
}

.step + .step {
    padding-left: 40px;
}

.step:last-child {
    border: none;
}

.step > span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--green);
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.step h3 {
    font-size: 23px;
    margin: 28px 0 15px;
}

.step p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 14px;
}


/* =========================
   CONTACT
========================= */

.contact {
    background: var(--dark);
    color: white;
    padding: 140px 0;
}

.contact h2 {
    margin: 30px 0;
    font-size: clamp(55px, 8vw, 110px);
    letter-spacing: -7px;
    line-height: .9;
}

.contact-content > p:not(.eyebrow) {
    color: rgba(255,255,255,.55);
    max-width: 500px;
    line-height: 1.7;
}

.contact-button {
    margin-top: 55px;
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--green);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
}

.contact-button strong {
    font-size: 30px;
    transition: transform .3s;
}

.contact-button:hover strong {
    transform: translateX(10px);
}


/* =========================
   FOOTER
========================= */

footer {
    background: #0b0c0a;
    color: white;
    padding: 40px 0;
}

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

.footer-logo {
    font-weight: 800;
}

.footer-logo span {
    color: var(--green);
}

footer p {
    font-size: 11px;
    color: rgba(255,255,255,.4);
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px) {

    .nav {
        min-height: 75px;
    }

    .menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 35px 5%;
        display: none;
        flex-direction: column;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        width: 25px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        border: 0;
        background: none;
    }

    .menu-toggle span {
        height: 1px;
        background: white;
        width: 100%;
    }

    .btn-whatsapp {
        display: none;
    }

    .hero {
        min-height: 850px;
    }

    .hero h1 {
        letter-spacing: -4px;
    }

    .hero-info {
        left: 5%;
        right: auto;
        gap: 25px;
    }

    .intro-grid,
    .section-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .trips-image {
        padding: 60px 0;
    }

    .trips-content {
        padding: 40px 0 100px;
    }

    .coverage-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .coverage-item,
    .coverage-item + .coverage-item,
    .step,
    .step + .step {
        padding: 35px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}


@media(max-width: 600px) {

    .container {
        width: 88%;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-info {
        flex-direction: column;
    }

    .intro,
    .services,
    .coverage,
    .how {
        padding: 90px 0;
    }

    .service-image {
        height: 300px;
    }

    .contact h2 {
        font-size: 58px;
        letter-spacing: -4px;
    }

}