:root {
    --header-h: 72px;

    /* Paleta Las Carretas */
    --cr-yellow: #E0B34C;
    --cr-terracotta: #9C4A2F;
    --cr-forest: #2F4F3E;
    --cr-olive: #7A8F6A;
    --cr-beige: #F4EFE9;
    --cr-earth: #0c0b0b;

    /* Neutros UI */
    --cr-text: var(--cr-earth);
    --cr-muted: rgba(59, 42, 31, .72);
    --cr-border: rgba(59, 42, 31, .14);
    --cr-shadow: 0 18px 60px rgba(59, 42, 31, .12);

    /* Compat */
    --pn-accent: var(--cr-forest);
    --pn-accent-2: var(--cr-terracotta);
    --pn-bg: var(--cr-beige);
    --pn-text: var(--cr-earth);
    --pn-muted: rgba(59, 42, 31, .72);
    --pn-border: rgba(59, 42, 31, .14);
    --pn-shadow: var(--cr-shadow);

    /* Motion */
    --t-fast: 160ms;
    --t-med: 300ms;
    --ease: cubic-bezier(.2, .9, .2, 1);
}


* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--cr-beige);
    color: var(--cr-text);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 16px;
}


section,
#inicio {
    scroll-margin-top: 92px;
}


:focus-visible {
    outline: 2px solid rgba(47, 79, 62, .55);
    outline-offset: 4px;
}


a,
button {
    transition: var(--t-med);
}

/* =========================================================
   HERO (PORTADA)
========================================================= */
.heroSection {
    min-height: 100vh;
    background: url("./imagenes/DJI_0442_11zon_2_11zon.webp") center / cover no-repeat;
    position: relative;

    margin-top: calc(-1 * var(--header-h));
    padding-top: calc(var(--header-h) + 18px);
    padding-bottom: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.heroSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(47, 79, 62, .42);
    pointer-events: none;
}

.heroSection>* {
    position: relative;
    z-index: 1;
}


.heroText {
    text-align: center;
    color: #fff;
    transform: translateY(80px);
}

.heroBrand {
    margin: 0;
    font-size: 5em;
    line-height: 1.08;
    font-weight: 800;
}

.heroSeo {
    max-width: 820px;
    margin: 10px auto 0;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .2px;
    opacity: .92;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.heroSeo__title {
    display: block;
}

.heroSeo__rollWrap {
    height: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}


.seoRoll {
    position: relative;
    height: 1.4em;
    min-width: 18ch;
    display: inline-block;
    perspective: 900px;
    transform-style: preserve-3d;
}

.seoRoll__word {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.7rem;
    white-space: nowrap;
    font-weight: 800;
    color: #fff;

    opacity: 0;
    transform: rotateX(90deg);
    transform-origin: center;
    transition:
        transform 900ms var(--ease),
        opacity 400ms ease;
}

.seoRoll__word.is-active {
    opacity: 1;
    transform: rotateX(0deg);
}

.seoRoll__word.is-exiting {
    opacity: 0;
    transform: rotateX(-90deg);
}

.heroActions {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
}

/* Botones */
.btnPrimary,
.btnGhost {
    font-family: inherit;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .88);
}

.btnGhost {
    background: transparent;
}

.btnGhost:hover {
    background: rgba(244, 239, 233, .95);
    border-color: rgba(244, 239, 233, .95);
    color: var(--cr-earth);
}

.btnPrimary {
    background: var(--cr-forest);
    border-color: var(--cr-forest);
    box-shadow: 0 14px 30px rgba(47, 79, 62, .26);
}

.btnPrimary:hover {
    background: var(--cr-yellow);
    border-color: var(--cr-earth);
    box-shadow: 0 16px 36px rgba(59, 42, 31, .30);
}

.btnIcon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    object-fit: contain;
}

.btnPrimary .btnIcon {
    filter: brightness(0) invert(1);
}


.heroBrand,
.heroSeo,
.heroActions {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp .9s ease-out forwards;
}

.heroBrand {
    animation-delay: .2s;
}

.heroSeo {
    animation-delay: .34s;
}

.heroActions {
    animation-delay: .7s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   HEADER / NAV
========================================================= */
.siteHeader {
    position: sticky;
    top: 0;
    z-index: 9999;
    height: var(--header-h);
    padding: 10px 0;
    background: transparent;
}

.headerRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* Logo lateral (mobile) */
.logo img {
    display: block;
    height: 48px;
    width: auto;
}

/* Logo central */
.navLogo img {
    display: block;
    height: 52px;
    width: auto;
    transition: opacity var(--t-med) ease, transform var(--t-med) ease;
}


.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin: 0 4px;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav a:hover {
    background: rgba(255, 255, 255, .16);
}

.nav a.active {
    background: rgba(255, 255, 255, .20);
}

/* CTA */
.nav a.navCta {
    background: var(--cr-forest);
    border: 2px solid var(--cr-forest);
}

.nav a.navCta:hover {
    background: var(--cr-yellow);
    border-color: var(--cr-earth);
}

.nav a.navCta.active {
    background: var(--cr-earth);
    border-color: var(--cr-earth);
}

/* Botón hamburguesa (mobile) */
.menuBtn {
    display: none;
    background: transparent;
    border: 0;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
}

.menuBtn:hover {
    background: rgba(255, 255, 255, .12);
}

.menuBars {
    width: 26px;
    height: 2px;
    background: #fff;
    display: inline-block;
    position: relative;
    border-radius: 2px;
    transition: var(--t-med);
}

.menuBars::before,
.menuBars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--t-med);
}

.menuBars::before {
    top: -8px;
}

.menuBars::after {
    top: 8px;
}


.navOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    pointer-events: none;
}

/* =========================
   MODO ISLA (SCROLL) – base (desktop+tablet)
========================= */
.siteHeader.scrolled {
    padding: 6px 0;
}

.siteHeader.scrolled .nav {
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 6px 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .10);
}

/* ocultar logo al scrollear */
.siteHeader.scrolled .navLogo {
    max-width: 0;
    overflow: hidden;
}

.siteHeader.scrolled .navLogo img {
    opacity: 0;
    transform: scale(.85);
}

/* =========================================================
   TIPOS DE EVENTOS
========================================================= */
.section-services {
    background: rgba(224, 179, 76, .14);
    color: var(--cr-earth);
    padding: 90px 0;
    text-align: center;
}

.section-services .header-section {
    margin-bottom: 34px;
}

.section-services .header-section .why__title,
.section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 14px;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    letter-spacing: -0.3px;
    color: var(--cr-earth);
}

.section-services .header-section .why__title::before,
.section-services .header-section .title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    background: var(--cr-terracotta);
    border-radius: 3px;
}

.section-services .header-section .why__title::after,
.section-services .header-section .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(32px);
    width: 10px;
    height: 3px;
    background: var(--cr-forest);
    border-radius: 3px;
}

.section-services .header-section .description {
    max-width: 760px;
    margin: 0 auto;
    font-size: .98rem;
    line-height: 1.6;
    color: var(--cr-muted);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.event-card {
    position: relative;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--cr-border);
    box-shadow: 0 10px 30px rgba(59, 42, 31, .10);
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(59, 42, 31, .16);
}

.event-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 22px;
    background: linear-gradient(to top,
            rgba(59, 42, 31, .86),
            rgba(59, 42, 31, .42) 55%,
            rgba(59, 42, 31, .14));
}

.event-card__title {
    margin: 0;
    font-weight: 800;
    font-size: 1.15rem;
    color: #fff;
}

.event-card__text {
    margin: 0;
    font-size: .95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .92);
    max-width: 46ch;
}

.event-card--15 {
    background-position: center 15%;
}


.why2 {
    background: var(--cr-beige);
    padding: clamp(4rem, 6vw, 6rem) 1rem;
}

.why2__wrap {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.why2__head {
    text-align: center;
    margin-bottom: 1.8rem;
}

.why2__title {
    margin: 0;
    font-size: clamp(2.05rem, 4.2vw, 2.85rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--cr-earth);
}

.why2__grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 14px;
    align-items: stretch;
    text-align: center;
}

.why2__card {
    position: relative;
    padding: clamp(1.4rem, 2.8vw, 2.2rem);
    border-radius: 18px;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(156, 74, 47, .14);
    box-shadow: 0 18px 55px rgba(59, 42, 31, .12);
    overflow: hidden;
}

.why2__card::after {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(circle at 25% 25%, rgba(224, 179, 76, .14) 0%, rgba(224, 179, 76, 0) 55%),
        radial-gradient(circle at 75% 80%, rgba(47, 79, 62, .12) 0%, rgba(47, 79, 62, 0) 55%);
    pointer-events: none;
}

.why2__lead {
    margin: 0 0 .95rem;
    max-width: 62ch;
    font-size: clamp(1.08rem, 1.5vw, 1.28rem);
    line-height: 1.6;
    color: var(--cr-earth);
    font-weight: 720;
    position: relative;
    z-index: 1;
}

.why2__highlight {
    display: inline-block;
    margin-top: .35rem;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(224, 179, 76, .20);
    border: 1px solid rgba(224, 179, 76, .22);
    color: var(--cr-forest);
    font-weight: 900;
}

.why2__text {
    margin: 0;
    max-width: 72ch;
    font-size: 1.03rem;
    line-height: 1.85;
    color: rgba(59, 42, 31, .74);
    position: relative;
    z-index: 1;
}

.why2__pills {
    margin-top: 1.35rem;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.why2__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(244, 239, 233, .82);
    border: 1px solid rgba(59, 42, 31, .14);
    color: var(--cr-earth);
    font-size: .92rem;
    font-weight: 650;
    box-shadow: 0 10px 22px rgba(59, 42, 31, .09);
    transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
}

.why2__pill strong {
    font-weight: 900;
    color: var(--cr-terracotta);
}

.why2__pill:hover {
    transform: translateY(-2px);
    border-color: rgba(156, 74, 47, .24);
    box-shadow: 0 14px 30px rgba(59, 42, 31, .12);
}

.why2__side {
    padding: clamp(1.2rem, 2.4vw, 1.8rem);
    border-radius: 18px;
    background: rgba(255, 255, 255, .44);
    border: 1px solid rgba(59, 42, 31, .12);
    box-shadow: 0 18px 55px rgba(59, 42, 31, .08);
    display: grid;
    gap: 12px;
    align-content: start;
    text-align: center;
}

.why2__stat {
    padding: 12px;
    border-radius: 14px;
    background: rgba(244, 239, 233, .62);
    border: 1px solid rgba(59, 42, 31, .10);
}

.why2__statLabel {
    display: block;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(59, 42, 31, .62);
    margin-bottom: 6px;
    font-weight: 800;
}

.why2__statValue {
    display: block;
    font-size: 1.02rem;
    font-weight: 900;
    color: var(--cr-earth);
    line-height: 1.25;
}

.why2__miniNote {
    margin-top: 2px;
    padding: 12px;
    border-radius: 14px;
    border: 1px dashed rgba(59, 42, 31, .18);
    background: rgba(255, 255, 255, .30);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.why2__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 5px;
    background: rgba(47, 79, 62, .85);
    box-shadow: 0 0 0 6px rgba(47, 79, 62, .10);
}

.why2__miniText {
    margin: 0;
    color: rgba(59, 42, 31, .72);
    line-height: 1.55;
}

/* =========================================================
   GALERÍA
========================================================= */
.gx {
    background: var(--pn-bg);
    padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.gx__wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.gx__head {
    text-align: center;
    margin-bottom: 1.6rem;
}

.gx__title {
    margin: 0 0 .6rem;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: .2px;
    color: var(--pn-text);
}

.gx__subtitle {
    margin: 0 auto;
    max-width: 680px;
    color: var(--pn-muted);
    line-height: 1.65;
}


.gx__grid {
    column-count: 3;
    column-gap: 14px;
}

.gx__item {
    border: 1px solid var(--pn-border);
    background: rgba(255, 255, 255, .80);
    border-radius: 16px;
    padding: 10px;
    width: 100%;
    display: inline-block;
    margin: 0 0 14px;
    cursor: default;
    box-shadow: 0 10px 26px rgba(59, 42, 31, .10);
    transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, border-color var(--t-fast) ease;
    break-inside: avoid;
}

.gx__item:hover {
    transform: translateY(-2px);
    border-color: rgba(156, 74, 47, .28);
    box-shadow: 0 14px 34px rgba(59, 42, 31, .14);
}

.gx__thumb {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(59, 42, 31, .06);
}

.gx__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: .85rem;
    letter-spacing: .2px;
    color: rgba(59, 42, 31, .92);
    background: rgba(224, 179, 76, .12);
    border: 1px solid rgba(156, 74, 47, .18);
}

.gx__item.is-active .gx__tag {
    color: var(--cr-forest);
    border-color: rgba(47, 79, 62, .28);
}


/* =========================================================
   RESEÑAS
========================================================= */
.revTape {
    background: rgba(244, 239, 233, .95);
    padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.revTape__wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.revTape__head {
    text-align: center;
    margin-bottom: 1.8rem;
}

.revTape__title {
    margin: 0 0 .6rem;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: .2px;
    color: var(--pn-text);
}

.revTape__subtitle {
    margin: 0 auto;
    max-width: 720px;
    color: var(--pn-muted);
    line-height: 1.65;
}

.revTape__viewport {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.revTape__viewport::before,
.revTape__viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    z-index: 3;
    pointer-events: none;
}

.revTape__viewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(244, 239, 233, 1) 0%, rgba(244, 239, 233, 0) 100%);
}

.revTape__viewport::after {
    right: 0;
    background: linear-gradient(270deg, rgba(244, 239, 233, 1) 0%, rgba(244, 239, 233, 0) 100%);
}

.revTape__track {
    display: flex;
    align-items: stretch;
    gap: 18px;
    width: max-content;
    will-change: transform;
    animation: revTapeScroll 30s linear infinite;
}

.revTape__viewport:hover .revTape__track {
    animation-play-state: paused;
}

@keyframes revTapeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.revTape__card {
    flex: 0 0 auto;
    width: min(360px, 86vw);
    padding-top: 44px;
}

.revTape__avatar {
    width: 132px;
    height: 132px;
    margin: 0 auto -42px;
    position: relative;
    z-index: 2;
}

.revTape__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .22);
    border: 6px solid rgba(244, 239, 233, .95);
}

.revTape__body {
    background: rgba(255, 255, 255, .62);
    border: 1px solid var(--cr-border);
    border-radius: 16px;
    padding: 56px 22px 18px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(59, 42, 31, .10);
}

.revTape__name {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 900;
    color: rgba(59, 42, 31, .92);
}

.revTape__place {
    margin: 0 0 12px;
    font-style: italic;
    font-weight: 700;
    color: var(--cr-terracotta);
}

.revTape__stars {
    display: inline-flex;
    gap: 4px;
    margin: 0 0 14px;
    font-size: 1.05rem;
    line-height: 1;
}

.revTape__stars .is-on {
    color: var(--cr-yellow);
}

.revTape__stars .is-half {
    color: rgba(224, 179, 76, .35);
    position: relative;
}

.revTape__stars .is-half::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: var(--cr-yellow);
}

.revTape__text {
    margin: 0;
    line-height: 1.55;
    letter-spacing: .2px;
    color: rgba(59, 42, 31, .70);
}

/* =========================================================
   UBICACIÓN
========================================================= */
#ubicacion {
    background: var(--cr-beige);
    padding: 60px 20px;
    text-align: center;
    width: 100%;
    margin: 0;
}

#titulo-ubicacion {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--cr-text);
}

.ubicacion-texto {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--cr-muted);
    line-height: 1.6;
    padding: 0 15px;
}

.mapa-contenedor {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(59, 42, 31, .18);
    border: 1px solid var(--cr-border);
}

.mapa-contenedor iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* =========================================================
   CONTACTO
========================================================= */
.contact {
    background: rgba(224, 179, 76, .08);
    padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.contact__wrap {
    width: min(860px, 100%);
    margin: 0 auto;
}

.contact__head {
    text-align: center;
    margin-bottom: 2rem;
}

.contact__subtitle {
    margin: .6rem auto 0;
    max-width: 680px;
    color: rgba(59, 42, 31, .72);
    line-height: 1.6;
    font-size: 1rem;
}

.contact__form {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__field--full {
    grid-column: 1 / -1;
}

.contact__field label {
    font-size: .9rem;
    font-weight: 700;
    color: rgba(59, 42, 31, .85);
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(59, 42, 31, .22);
    background: rgba(255, 255, 255, .9);
    font-size: .95rem;
    color: rgba(59, 42, 31, .92);
    transition: border-color var(--t-fast) ease, box-shadow var(--t-fast) ease, background-color var(--t-fast) ease;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: rgba(59, 42, 31, .45);
}

.contact__field input:hover,
.contact__field textarea:hover {
    border-color: rgba(156, 74, 47, .35);
}

.contact__field input:focus,
.contact__field textarea:focus {
    outline: none;
    border-color: var(--cr-forest);
    box-shadow: 0 0 0 3px rgba(47, 79, 62, .14);
    background: #fff;
}

.contact__field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.contact__btn {
    appearance: none;
    border: none;
    cursor: pointer;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--cr-forest);
    box-shadow: 0 10px 24px rgba(59, 42, 31, .18), inset 0 0 0 1px rgba(255, 255, 255, .12);
    transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, filter var(--t-fast) ease;
}

.contact__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 30px rgba(59, 42, 31, .22), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.contact__btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(59, 42, 31, .18), inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.contactAlt {
    margin-top: 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
}

.contactAlt__text {
    margin: 0;
    font-size: .95rem;
    color: rgba(59, 42, 31, .75);
}

.contactAlt__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 900;
    font-size: .9rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: var(--cr-forest);
    border: 2px solid var(--cr-forest);
    box-shadow: 0 10px 22px rgba(59, 42, 31, .18), inset 0 0 0 1px rgba(255, 255, 255, .12);
    transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease, filter var(--t-fast) ease;
}

.contactAlt__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 30px rgba(59, 42, 31, .22), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.contactAlt__btn .btnIcon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
    color: rgba(255, 255, 255, .92);
    background: var(--cr-earth);
    padding: 40px 20px;
    text-align: center;
    font-family: inherit;
    /* antes decía Poppins (no cargada) */
    border-top: 1px solid rgba(224, 179, 76, .22);
}

.footer-contenido {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.footer-title {
    font-size: 1.6rem;
    margin: 0 0 .8rem;
    font-weight: 700;
}

.footer-info p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

.footer-datos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    text-align: center;
}

.footer-datos li {
    font-size: 1rem;
    line-height: 1.4;
}

.footer-datos strong {
    font-weight: 700;
    margin-right: 6px;
}

.footer-datos a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    border-bottom: 1px solid rgba(224, 179, 76, 0);
    transition: border-color var(--t-fast) ease, opacity var(--t-fast) ease;
}

.footer-datos a:hover {
    border-bottom-color: rgba(224, 179, 76, .55);
    opacity: .9;
}

.footer-redes {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-redes a img {
    width: 20px;
    height: 20px;
    filter: invert(1);
    transition: transform var(--t-med) ease, opacity var(--t-med) ease;
}

.footer-redes a:hover img {
    transform: scale(1.2);
    opacity: .8;
}

.footer-creditos p {
    margin-top: 28px;
    font-size: 14px;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

.footer-creditos a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-weight: 700;
    transition: opacity var(--t-fast) ease;
}

.footer-creditos a:hover {
    opacity: .9;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .why2__grid {
        grid-template-columns: 1fr;
    }

    .gx__grid {
        column-count: 2;
    }

    .gx__thumb {
        border-radius: 10px;
    }
}

@media (max-width: 900px) {
    .heroBrand {
        font-size: 3em;
    }

    .heroSeo {
        font-size: 1rem;
    }
}

@media (min-width: 761px) and (max-width: 900px) {

    /* tablet: solo logo central */
    .logo {
        display: none;
    }

    .headerRow {
        justify-content: center;
    }

    .navLogo img {
        height: 48px;
    }

    .nav,
    .navGroup {
        flex-wrap: nowrap;
    }

    .nav a {
        white-space: nowrap;
        font-size: 11px;
        padding: 8px 12px;
        margin: 0 2px;
    }

    .nav {
        gap: 12px;
    }
}

@media (max-width: 760px) {

    /* HERO */
    .logo img {
        height: 44px;
    }

    .heroSection {
        background-image: url("./imagenes/DJI_0442_11zon_2_11zon.webp");
        background-position: center;
        padding: 88px 0 34px;
        min-height: calc(100vh - 68px);
    }

    .heroText {
        transform: translateY(120px);
    }

    .heroBrand {
        font-size: 2.5rem;
    }

    .heroSeo {
        font-size: .98rem;
        margin-top: 8px;
    }

    /* HEADER mobile */
    .headerRow {
        position: relative;
    }

    .menuBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 10003;
    }

    .navLogo {
        display: none;
    }

    /* isla al scrollear */
    .siteHeader.scrolled .headerRow {
        width: fit-content;
        padding: 8px 10px;
        margin: 0 auto;
        border-radius: 999px;
        background: rgba(0, 0, 0, .35);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
        border: 1px solid rgba(255, 255, 255, .10);
    }

    .siteHeader.scrolled .logo {
        opacity: 0;
        transform: translateX(-10px);
        pointer-events: none;
    }

    .siteHeader.scrolled .menuBtn {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

    /* NAV dropdown */
    .navGroup {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 76px;

        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border-radius: 20px;

        background: rgba(0, 0, 0, .55);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        z-index: 10002;
    }

    .nav a {
        width: 100%;
        margin: 0;
        padding: 14px 16px;
        text-align: center;
        background: rgba(255, 255, 255, .08);
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, .10);
        color: rgba(255, 255, 255, .92);
    }

    .nav a:hover {
        background: rgba(255, 255, 255, .16);
    }

    .nav a.navCta {
        background: var(--cr-forest);
        border-color: var(--cr-forest);
    }

    .nav a.navCta:hover {
        background: var(--cr-earth);
        border-color: var(--cr-earth);
    }

    .navOverlay {
        z-index: 10000;
    }

    .siteHeader.is-open .nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .siteHeader.is-open .navOverlay {
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .heroText {
        opacity: .18;
        filter: blur(2px);
        pointer-events: none;
    }

    .siteHeader.is-open .menuBars {
        background: transparent;
    }

    .siteHeader.is-open .menuBars::before {
        top: 0;
        transform: rotate(45deg);
    }

    .siteHeader.is-open .menuBars::after {
        top: 0;
        transform: rotate(-45deg);
    }

    
    .section-services {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .event-card {
        height: 260px;
    }

    
    .gx__grid {
        column-count: 1;
    }

    
    .contact__form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact__btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 520px) {
    .gx__full {
        height: min(70vh, 560px);
    }

    .gx__cap {
        padding: 16px;
    }

    .gx__nav {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .btnPrimary,
    .btnGhost {
        width: 100%;
        max-width: 320px;
    }

    .footer-creditos p {
        font-size: 12px;
        margin-top: 32px;
    }

    .footer-redes {
        gap: 16px;
    }

    .footer-redes a img {
        width: 18px;
        height: 18px;
    }
}


@media (min-width: 901px) {
    .headerRow {
        justify-content: center;
    }

    .logo {
        display: none;
    }

    .menuBtn {
        display: none;
    }

    .nav {
        gap: 22px;
    }

    .navGroup {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .siteHeader.scrolled .nav a {
        font-size: 11px;
        padding: 6px 14px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .heroBrand,
    .heroSeo,
    .heroActions {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .seoRoll__word {
        transition: none;
    }

    .why2__pill,
    .gx__item,
    .gx__close,
    .gx__nav,
    .contact__btn,
    .contact__field input,
    .contact__field textarea {
        transition: none;
    }

    .revTape__track {
        animation: none;
        transform: none;
    }
}




