:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f4faf6;
    --surface-3: #edf6f0;

    --text: #1c1f1d;
    --muted: #68706a;
    --line: rgba(17, 24, 20, 0.08);

    --primary: #006633;
    --primary-2: #004d26;
    --primary-soft: rgba(0, 102, 51, 0.08);
    --primary-soft-2: rgba(0, 102, 51, 0.14);

    --white: #ffffff;
    --black: #000000;

    --shadow-sm: 0 8px 20px rgba(10, 22, 14, 0.06);
    --shadow-md: 0 18px 48px rgba(10, 22, 14, 0.10);
    --shadow-lg: 0 26px 70px rgba(10, 22, 14, 0.16);

    --radius-sm: 16px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --radius-xl: 999px;

    --container: 1180px;
    --transition: 220ms ease;
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

textarea {
    resize: vertical;
}

ul {
    list-style: none;
}

.container,
.why2__wrap,
.gx__wrap,
.contact__wrap,
.footer-contenido,
.footer-creditos {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

body.menu-open {
    overflow: hidden;
}

/* ================= HEADER ================= */

.siteHeader {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 10px 0;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.siteHeader.is-scrolled {
    background: transparent;
    box-shadow: none;
}

.headerRow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: none;
    z-index: 1003;
}

.logo img,
.navLogo img {
    width: auto;
    object-fit: contain;
}

.logo img {
    height: 88px;
}

.navLogo img {
    height: 102px;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    width: fit-content;
    max-width: 1120px;
    margin-inline: auto;
    padding: 2px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
    transition:
        width 260ms ease,
        padding 260ms ease,
        gap 260ms ease,
        background 260ms ease,
        box-shadow 260ms ease,
        border-color 260ms ease,
        transform 260ms ease;
}

.navGroup {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navLeft {
    justify-content: flex-end;
    padding-right: 4px;
}

.navRight {
    justify-content: flex-start;
    padding-left: 4px;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

.nav a:hover {
    color: var(--primary);
}

.navLogo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navLogo img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(84%) saturate(830%) hue-rotate(118deg) brightness(94%) contrast(101%);
}

.navLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 4px;
    white-space: nowrap;
}

.navLink__icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.navLink__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    transition: transform .25s ease;
}

.navLink:hover .navLink__icon svg {
    transform: scale(1.15);
}

.navLink__text {
    display: inline-block;
    transition: opacity 180ms ease, transform 180ms ease;
}

.navCta {
    padding: 8px 18px;
    min-height: 44px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: var(--shadow-sm);
}

.navCta:hover {
    background: var(--primary-2);
    transform: translateY(-1px);
}

.menuBtn {
    display: none;
    position: relative;
    z-index: 1003;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.menuBars,
.menuBars::before,
.menuBars::after {
    position: absolute;
    left: 50%;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 10px;
    background: var(--text);
    transform: translateX(-50%);
    transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.menuBars {
    top: 24px;
}

.menuBars::before,
.menuBars::after {
    content: "";
}

.menuBars::before {
    top: -7px;
}

.menuBars::after {
    top: 7px;
}

.menuBtn.is-active .menuBars {
    background: transparent;
}

.menuBtn.is-active .menuBars::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menuBtn.is-active .menuBars::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}

.navOverlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(7, 15, 10, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.navOverlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ================= HERO ================= */

.heroSlider {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #dce8df;
}

.heroSlider__track {
    position: relative;
    min-height: 100svh;
}

.heroSlide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    background-image: var(--hero-desktop);
    background-repeat: no-repeat;
    background-position: var(--hero-position-desktop, center center);
    background-size: cover;
    transition: opacity 700ms ease, visibility 700ms ease, transform 1100ms ease;
}

.heroSlide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.heroSlide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.30) 42%, rgba(0, 0, 0, 0.18) 100%);
}

.heroSlide__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 100svh;
    padding-top: 150px;
    padding-bottom: 120px;
    color: var(--white);
    text-align: center;
}

.heroTitleWrap,
.heroInfoWrap,
.heroButtonsWrap {
    width: 100%;
}

.heroTitle {
    max-width: 12ch;
    margin: 0 auto;
    font-size: clamp(2.8rem, 4.5vw, 4.6rem);
    line-height: 0.96;
    font-weight: 800;
    text-wrap: balance;
}

.heroText {
    max-width: 58ch;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
}

.heroActions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.btnPrimary,
.btnGhost,
.contactAlt__btn,
.contact__btn,
.service-card__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btnPrimary,
.contactAlt__btn,
.contact__btn,
.service-card__content a {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btnPrimary:hover,
.contactAlt__btn:hover,
.contact__btn:hover,
.service-card__content a:hover {
    background: var(--primary-2);
    transform: translateY(-2px);
}

.btnGhost {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btnGhost:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.btnIcon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.heroSlider__controls {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transform: translateX(-50%);
}

.heroSlider__btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1;
    backdrop-filter: blur(8px);
    transition: background var(--transition), transform var(--transition);
}

.heroSlider__btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.heroSlider__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.heroSlider__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    transition: transform var(--transition), background var(--transition);
}

.heroSlider__dot.is-active {
    background: var(--white);
    transform: scale(1.2);
}

/* ================= SECCIONES GENERALES ================= */

.section-services,
.why2,
.gx,
#ubicacion,
.contact {
    padding: 100px 0;
}

.header-section,
.gx__head,
.contact__head,
.why2__head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.sectionTitle,
.why2__title,
.gx__title {
    margin-bottom: 14px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.08;
}

.description,
.gx__subtitle,
.contact__subtitle,
.ubicacion-texto {
    color: var(--muted);
    font-size: 1.02rem;
}

/* ================= SERVICIOS ================= */

.section-services {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 102, 51, 0.14);
}

.service-card__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dde8e0;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 24px;
}

.service-card__content h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 1.15;
}

.service-card__content p {
    min-height: 92px;
    margin-bottom: 18px;
    color: var(--muted);
}

.service-card__content a {
    min-height: 48px;
    padding: 12px 18px;
    margin-top: auto;
}

/* ================= POR QUÉ NOSOTROS ================= */
/* ================= POR QUÉ NOSOTROS ================= */

.why2 {
    position: relative;
    overflow: hidden;
    padding: 86px 0 38px;
    background:
        radial-gradient(circle at top left, rgba(0, 102, 51, 0.05) 0%, transparent 32%),
        linear-gradient(180deg, #296438 0%, #f5faf7 100%);
}

.why2__wrap {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
}

.why2__head {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.why2__eyebrow,
.gx__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid var(--primary-soft-2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.why2__title {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--bg);
}

.why2__intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.7;
    color: var(--bg);
    text-align: center;
}

.why2__highlight {
    color: var(--bg);
    font-weight: 700;
}

.why2__layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why2__story {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.why2__storyText {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--bg);
    text-align: center;
}

.why2__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.why2__feature {
    position: relative;
    min-height: 100%;
    padding: 28px 24px 24px;
    border: 1px solid rgba(17, 24, 20, 0.07);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(27, 33, 24, 0.06);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.why2__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(27, 33, 24, 0.09);
    border-color: rgba(0, 102, 51, 0.14);
}

.why2__featureTop {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.why2__featureTitle {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--text);
}

.why2__featureText {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

.why2__band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(17, 24, 20, 0.06);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 248, 242, 0.96) 100%);
    box-shadow: 0 14px 34px rgba(27, 33, 24, 0.05);
}

.why2__bandItem {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 24, 20, 0.05);
    text-align: center;
}

.why2__bandLabel {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.88rem;
    letter-spacing: 0.03em;
}

.why2__bandValue {
    display: block;
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
}

.why2__closing {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 780px;
    margin: 2px auto 0;
}

.why2__closingText {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    text-align: center;
}

/* ================= GALERÍA ================= */

.gx {
    padding: 34px 0 86px;
    background: linear-gradient(180deg, #f6fbf8 0%, #ffffff 100%);
}

.gx__wrap {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
}

.gx__head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.gx__title {
    margin-bottom: 12px;
}

.gx__subtitle {
    max-width: 62ch;
    margin-inline: auto;
    color: var(--muted);
}

.gx__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gx__item {
    position: relative;
    overflow: hidden;
    min-height: 255px;
    aspect-ratio: 16 / 10;
    border-radius: 26px;
    background: #dde8e0;
    box-shadow: 0 14px 34px rgba(20, 20, 20, 0.10);
    isolation: isolate;
}

.gx__open {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 255px;
    padding: 0;
    border: 0;
    border-radius: inherit;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    font: inherit;
    color: inherit;
}

.gx__open:focus-visible {
    outline: 3px solid rgba(31, 67, 57, 0.35);
    outline-offset: 4px;
}

.gx__thumb {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 700ms ease, filter 400ms ease;
}

.gx__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.40) 100%);
    transition: background 300ms ease;
    pointer-events: none;
}

.gx__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    pointer-events: none;
}

.gx__tag {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.gx__open:hover .gx__thumb {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.gx__open:hover .gx__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.30) 100%);
}

/* Lightbox galería */
.gx-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gx-lightbox.is-active {
    display: flex;
}

.gx-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
}

.gx-lightbox__figure {
    position: relative;
    z-index: 2;
    width: min(1180px, 94vw);
    max-height: 88vh;
    margin: 0;
    animation: gxZoomIn 0.28s ease both;
}

.gx-lightbox__img {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

.gx-lightbox__caption {
    margin-top: 12px;
    color: #ffffff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.86;
}

.gx-lightbox__close {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, background 220ms ease;
}

.gx-lightbox__close:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.22);
}

body.gx-lightbox-open {
    overflow: hidden;
}

@keyframes gxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .why2 {
        padding: 72px 0 32px;
    }

    .why2__features,
    .why2__band {
        grid-template-columns: 1fr;
    }

    .gx {
        padding: 30px 0 72px;
    }

    .gx__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .why2 {
        padding: 64px 0 28px;
    }

    .why2__wrap,
    .gx__wrap {
        width: min(100% - 24px, 1280px);
    }

    .why2__head {
        margin-bottom: 32px;
    }

    .why2__layout {
        gap: 20px;
    }

    .why2__band {
        padding: 12px;
        border-radius: 24px;
    }

    .why2__closing {
        margin-top: 0;
    }

    .gx {
        padding: 28px 0 68px;
    }

    .gx__head {
        margin-bottom: 28px;
    }

    .gx__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gx__item {
        min-height: 230px;
        aspect-ratio: 16 / 11;
        border-radius: 22px;
    }

    .gx__open {
        min-height: 230px;
    }

    .gx__thumb {
        min-height: 100%;
    }

    .gx-lightbox {
        padding: 14px;
    }

    .gx-lightbox__figure {
        width: 96vw;
    }

    .gx-lightbox__img {
        max-height: 78vh;
        border-radius: 16px;
    }

    .gx-lightbox__close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
}


/* ================= UBICACIÓN ================= */

#ubicacion {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.mapa-contenedor {
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.mapa-contenedor iframe {
    display: block;
}

/* ================= CONTACTO ================= */

.contact {
    background: linear-gradient(180deg, #f4faf6 0%, #ffffff 100%);
}

.contact__wrap {
    width: min(100% - 32px, 900px);
    margin-inline: auto;
}

.contact__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 32px;
    border: 1px solid rgba(17, 24, 20, 0.06);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__field--full,
.contact__actions,
.contact__status {
    grid-column: 1 / -1;
}

.contact__field label {
    font-size: 0.95rem;
    font-weight: 600;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(17, 24, 20, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact__field input:focus,
.contact__field textarea:focus {
    outline: none;
    border-color: rgba(0, 102, 51, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 102, 51, 0.10);
}

.contact__actions {
    display: flex;
    justify-content: center;
}

.contact__status {
    font-weight: 600;
    text-align: center;
}

.contactAlt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    text-align: center;
}

.contactAlt__text {
    color: var(--muted);
}

/* ================= FOOTER ================= */

.footer {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #1e4b32 0%, #1b3f2a 100%);
    color: rgba(255, 255, 255, 0.88);
}

.footer-contenido {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 32px;
    align-items: center;
}

.footer-title {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.4rem;
}

.footer-info p {
    max-width: 58ch;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-datos {
    display: grid;
    gap: 10px;
}

.footer-datos li,
.footer-datos a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-redes {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-redes a {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: transform var(--transition), background var(--transition);
}

.footer-redes a:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.footer-redes img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-creditos {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-creditos p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.footer-creditos a {
    color: var(--white);
    font-weight: 600;
}

/* ================= DESKTOP SCROLL NAV ================= */

@media (min-width: 901px) {
    .siteHeader.is-scrolled .nav {
        grid-template-columns: auto auto auto;
        gap: 14px;
        width: auto;
        padding: 10px 16px;
        background: rgba(255, 255, 255, 0.90);
        border: 1px solid rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(14px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    }

    .siteHeader.is-scrolled .navGroup {
        gap: 10px;
    }

    .siteHeader.is-scrolled .navLeft,
    .siteHeader.is-scrolled .navRight {
        padding: 0;
    }

    .siteHeader.is-scrolled .navLogo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .siteHeader.is-scrolled .navLogo img {
        height: 90px;
    }

    .siteHeader.is-scrolled .navLink {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 42px;
        min-width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        border-radius: 50%;
    }

    .siteHeader.is-scrolled .navLink__icon {
        display: flex;
    }

    .siteHeader.is-scrolled .navLink__text {
        display: none;
    }

    .siteHeader.is-scrolled .navCta {
        background: var(--primary);
        color: var(--white) !important;
        box-shadow: var(--shadow-sm);
    }

    .heroSlide__content {
        display: grid;
        grid-template-columns: minmax(420px, 560px) minmax(280px, 440px);
        grid-template-areas:
            "title info"
            "title buttons";
        align-content: center;
        align-items: center;
        justify-content: space-between;
        column-gap: 56px;
        row-gap: 18px;
        min-height: 100svh;
        padding-top: 150px;
        padding-bottom: 120px;
        text-align: left;
    }

    .heroTitleWrap {
        grid-area: title;
        align-self: center;
    }

    .heroInfoWrap {
        grid-area: info;
        align-self: end;
    }

    .heroButtonsWrap {
        grid-area: buttons;
        align-self: start;
    }

    .heroTitle {
        max-width: 9ch;
        margin: 0;
        font-size: clamp(2.8rem, 4.5vw, 4.4rem);
        line-height: 0.92;
        text-wrap: pretty;
    }

    .heroText {
        max-width: 26ch;
        margin: 0;
        font-size: 1.5rem;
        line-height: 1.65;
        text-align: left;
    }

    .heroActions {
        justify-content: flex-start;
        gap: 12px;
    }
}

/* ================= TABLET ================= */

@media (max-width: 1100px) {
    .nav {
        max-width: 760px;
        gap: 34px;
    }

    .navGroup {
        gap: 14px;
    }

    .nav a {
        font-size: 0.9rem;
    }

    .services-grid,
    .gx__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why2__features,
    .why2__band {
        grid-template-columns: 1fr;
    }
}


/* ================= MOBILE NAV ================= */
@media (max-width: 900px) {
    .siteHeader {
        padding: 12px 0;
    }

    .headerRow {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        min-width: 220px;
        max-width: 260px;
        min-height: 66px;
        margin-inline: auto;
        padding: 0 20px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.90);
        border: 1px solid rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 12px 32px rgba(10, 22, 14, 0.12);
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-58%, -50%);
        z-index: 1003;
    }

    .logo img {
        height: 44px;
        width: auto;
        object-fit: contain;
        filter:
            brightness(0) saturate(100%) invert(23%) sepia(84%) saturate(830%) hue-rotate(118deg) brightness(94%) contrast(101%);
    }

    .menuBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        left: calc(50% + 18px);
        transform: translateY(-50%);
        z-index: 1003;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: transparent;
        box-shadow: none;
    }

    .menuBars {
        top: 18px;
    }

    .menuBars,
    .menuBars::before,
    .menuBars::after {
        width: 20px;
        height: 2.5px;
        background: #222;
    }

    .menuBars::before {
        top: -6px;
    }

    .menuBars::after {
        top: 6px;
    }

    .nav {
        position: fixed;
        top: 84px;
        left: 50%;
        right: auto;
        transform: translate(-50%, -16px);
        width: min(92vw, 360px);
        max-width: 360px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: flex-start;
        padding: 24px 22px 24px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(17, 24, 20, 0.06);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 18px 48px rgba(10, 22, 14, 0.18);
        opacity: 0;
        pointer-events: none;
        transition: opacity 240ms ease, transform 280ms ease;
        z-index: 1002;
    }

    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }

    .navGroup,
    .navLeft,
    .navRight {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        padding: 0;
    }

    .navLogo {
        display: none;
    }

    .navLink {
        justify-content: flex-start;
        min-height: 50px;
        padding: 0 6px;
        border-radius: 14px;
    }

    .navCta {
        justify-content: center;
        min-height: 52px;
        margin-top: 6px;
    }

    .navOverlay,
    .navOverlay.is-visible {
        opacity: 0 !important;
        pointer-events: none !important;
        background: transparent !important;
    }
}

@media (max-width: 640px) {
    .headerRow {
        min-width: 190px;
        max-width: 230px;
        min-height: 58px;
        padding: 0 16px;
    }

    .logo img {
        height: 40px;
    }

    .menuBtn {
        width: 34px;
        height: 34px;
        left: calc(50% + 14px);
    }

    .menuBars {
        top: 16px;
    }

    .menuBars,
    .menuBars::before,
    .menuBars::after {
        width: 18px;
    }

    .menuBars::before {
        top: -5px;
    }

    .menuBars::after {
        top: 5px;
    }

    .nav {
        top: 74px;
        width: min(94vw, 340px);
        padding: 22px 18px 20px;
        border-radius: 24px;
    }

    .footer-contenido {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        text-align: center;
    }

    .footer-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-title,
    .footer-info p,
    .footer-datos,
    .footer-datos li,
    .footer-datos a {
        text-align: center;
    }

    .footer-info p {
        margin-inline: auto;
    }

    .footer-datos {
        display: grid;
        gap: 10px;
        justify-items: center;
        width: 100%;
    }

    .footer-redes {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        width: 100%;
        margin-top: 0;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 640px) {

    .container,
    .why2__wrap,
    .gx__wrap,
    .contact__wrap,
    .footer-contenido,
    .footer-creditos {
        width: min(100% - 20px, var(--container));
    }

    .siteHeader {
        padding: 10px 0;
    }

    .headerRow {
        min-height: 58px;
        padding: 0 10px;
    }

    .logo img {
        height: 42px;
    }

    .menuBtn {
        width: 38px;
        height: 38px;
        left: calc(50% + 28px);
    }

    .menuBars {
        top: 18px;
    }

    .menuBars,
    .menuBars::before,
    .menuBars::after {
        width: 20px;
    }

    .menuBars::before {
        top: -6px;
    }

    .menuBars::after {
        top: 6px;
    }

    .heroSlide__content {
        gap: 18px;
        padding-top: 190px;
        padding-bottom: 120px;
    }

    .heroTitle {
        max-width: 10ch;
        font-size: clamp(2rem, 11vw, 3.15rem);
        line-height: 0.94;
        text-align: center;
    }

    .heroText {
        max-width: 24ch;
        font-size: 0.98rem;
        text-align: center;
    }

    .heroActions {
        flex-direction: column;
        align-items: stretch;
    }

    .btnPrimary,
    .btnGhost {
        width: 100%;
    }

    .heroSlider__controls {
        bottom: 20px;
        gap: 12px;
    }

    .heroSlider__btn {
        width: 42px;
        height: 42px;
    }

    .services-grid,
    .gx__grid,
    .why2__features,
    .why2__band {
        grid-template-columns: 1fr;
    }

    .service-card__content {
        align-items: center;
        text-align: center;
    }

    .service-card__content p {
        min-height: auto;
    }

    .service-card__content a {
        align-self: center;
    }

    .why2__head {
        margin-bottom: 28px;
    }

    .why2__title {
        font-size: clamp(1.7rem, 8vw, 2.35rem);
    }

    .why2__intro {
        font-size: 1rem;
        line-height: 1.75;
        text-align: center;
    }

    .why2__storyText {
        font-size: 0.98rem;
        line-height: 1.8;
        text-align: center;
    }

    .why2__feature {
        padding: 24px 18px 20px;
        border-radius: 22px;
        text-align: center;
    }

    .why2__featureTop {
        align-items: center;
    }

    .why2__featureText {
        text-align: center;
    }

    .why2__band {
        padding: 14px;
        border-radius: 22px;
    }

    .why2__bandItem {
        padding: 16px;
        border-radius: 16px;
    }

    .why2__closing {
        gap: 12px;
    }

    .why2__closingLine {
        width: 34px;
    }

    .why2__closingText {
        font-size: 0.95rem;
    }

    .gx__head {
        margin-bottom: 24px;
    }

    .gx__item,
    .gx__thumb {
        min-height: 220px;
        border-radius: 22px;
    }

    .gx__content {
        padding: 18px;
    }

    .gx__tag {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
    }

    .contact__head,
    .contactAlt,
    .contact__actions {
        text-align: center;
    }

    .footer {
        text-align: center;
    }

    .footer-contenido {
        justify-items: center;
        text-align: center;
    }

    .footer-info p {
        margin-inline: auto;
    }

    .footer-datos {
        justify-items: center;
    }

    .footer-redes {
        justify-content: center;
    }

    .footer-creditos {
        text-align: center;
    }

    .sectionTitle,
    .why2__title,
    .gx__title {
        font-size: 1.8rem;
    }


}

/* ================= HERO MOBILE IMAGES ================= */

@media (max-width: 640px) {
    .heroSlide {
        background-image: var(--hero-mobile, var(--hero-desktop));
        background-position: var(--hero-position-mobile, center center);
    }
}