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

:root {
    --bg: #07141c;
    --bg-deep: #0d202b;
    --bg-overlay-top: rgba(10, 27, 37, 0.78);
    --bg-overlay-bottom: rgba(6, 14, 21, 0.94);
    --panel: rgba(11, 28, 37, 0.78);
    --panel-soft: rgba(12, 29, 38, 0.62);
    --panel-strong: rgba(10, 24, 33, 0.88);
    --text: #f7f1e8;
    --muted: #ccbfae;
    --mint: #89cfc7;
    --mint-strong: #f0c38c;
    --line: rgba(240, 195, 140, 0.2);
    --line-strong: rgba(240, 195, 140, 0.34);
    --navbar-bg: rgba(7, 17, 24, 0.72);
    --navbar-line: rgba(240, 195, 140, 0.18);
    --text-soft: rgba(247, 241, 232, 0.84);
    --text-faint: rgba(247, 241, 232, 0.72);
    --button-text: #2e1a08;
    --button-grad-start: #e4b271;
    --button-grad-end: #f3d5a6;
    --button-shadow: rgba(228, 178, 113, 0.26);
    --hero-button-text: #123333;
    --hero-button-start: #79cec2;
    --hero-button-end: #b9ece5;
    --hero-button-shadow: rgba(121, 206, 194, 0.24);
    --glow: 0 30px 90px rgba(0, 0, 0, 0.5);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    min-width: 320px;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, var(--bg-overlay-top), var(--bg-overlay-bottom)),
        url('/assets/img/hero.jpg') center top / cover fixed no-repeat;
}

body.is-ready {
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

main {
    display: block;
    padding-bottom: 60px;
}

.empty-state {
    text-align: center;
    color: var(--muted);
}

/* =========================
   TOP NAV
========================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 22px;
    background: var(--navbar-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--navbar-line);
}

.nav-shell {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-kicker {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--mint);
    font-weight: 700;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    line-height: 0.92;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 14px;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
    color: var(--mint-strong);
}

.btn-contacto {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    color: var(--button-text);
    font-weight: 800;
    background: linear-gradient(135deg, var(--button-grad-start), var(--button-grad-end));
    box-shadow: 0 12px 36px var(--button-shadow);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.btn-contacto:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 16px 42px rgba(228, 178, 113, 0.34);
}

.account-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.account-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.26);
    text-decoration: none;
}

.account-chip-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--hero-button-start), var(--hero-button-end));
    color: var(--hero-button-text);
    font-weight: 800;
}

.account-chip-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-chip-copy {
    display: grid;
}

.account-chip-copy small {
    color: var(--text-faint);
    font-size: 11px;
}

.account-chip-copy strong {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

/* =========================
   SHARED BLOCKS
========================= */
.section {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 42px 22px;
}

.section-tight {
    padding-top: 16px;
}

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

.hero-kicker,
.section-kicker,
.footer-eyebrow,
.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 800;
    color: var(--mint);
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.section-title h1,
.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.95;
    margin-top: 14px;
}

.section-title h1 {
    font-size: clamp(40px, 6vw, 66px);
}

.section-title h2 {
    font-size: clamp(36px, 5.2vw, 56px);
}

.section-title h1::after,
.section-title h2::after {
    content: "";
    display: block;
    width: 66px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(137, 207, 199, 0.18), var(--mint-strong), rgba(137, 207, 199, 0.12));
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    width: 100%;
    margin: 0;
    min-height: 72vh;
    border-radius: 0;
    border: 0;
    overflow: hidden;
    box-shadow: none;
    background: url('/assets/img/hero.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 104px 26px 80px;
}

.hero-showcase {
    min-height: min(960px, 100vh);
    padding: 122px 26px 94px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(140% 100% at 16% 18%, rgba(121, 206, 194, 0.24), transparent 64%),
        linear-gradient(180deg, rgba(8, 18, 25, 0.16), rgba(5, 12, 18, 0.86));
}

.hero-noise {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(240, 195, 140, 0.08), transparent 42%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 10px
        );
    mix-blend-mode: screen;
    opacity: 0.45;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(100%, var(--container));
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    grid-template-areas:
        "content stage"
        "actions stage"
        "facts stage";
    align-items: center;
    gap: 42px;
}

.hero-content {
    grid-area: content;
    z-index: 2;
    text-align: left;
    width: min(100%, 680px);
    padding: 22px 0;
    animation: fadeUp 0.9s ease;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8.1vw, 92px);
    line-height: 0.9;
    margin: 20px 0 14px;
    text-wrap: balance;
}

.hero p {
    max-width: 640px;
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

.hero-actions {
    grid-area: actions;
    margin-top: 0;
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-facts {
    grid-area: facts;
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-fact {
    min-height: 104px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(13, 33, 43, 0.72), rgba(9, 21, 29, 0.7));
    border: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.hero-fact strong {
    display: block;
    font-size: 20px;
    color: var(--mint-strong);
    margin-bottom: 8px;
}

.hero-fact span {
    display: block;
    color: var(--text-faint);
    font-size: 13px;
    line-height: 1.55;
}

.hero-stage {
    grid-area: stage;
    position: relative;
    min-height: 620px;
    perspective: 1800px;
}

.hero-stage-glow {
    position: absolute;
    inset: 12% 6% 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(240, 195, 140, 0.26), transparent 42%),
        radial-gradient(circle at center, rgba(121, 206, 194, 0.16), transparent 62%);
    filter: blur(28px);
    opacity: 0.88;
}

.hero-card {
    position: absolute;
    width: min(100%, 390px);
    height: 540px;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(240, 226, 205, 0.2);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.38);
    transform-style: preserve-3d;
    transform:
        translate3d(0, 90px, 0)
        rotateX(14deg)
        rotateY(-18deg)
        scale(0.86);
    opacity: 1;
    transition:
        transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease,
        filter 0.45s ease,
        opacity 0.4s ease;
    transition-delay: calc(var(--card-order) * 140ms + 120ms);
    will-change: transform;
}

.hero-card:nth-of-type(1) {
    right: 4%;
    top: 18%;
}

.hero-card:nth-of-type(2) {
    left: 2%;
    top: 7%;
}

.hero-card:nth-of-type(3) {
    right: 16%;
    top: 0;
}

body.is-ready .hero-card:nth-of-type(1) {
    transform: translate3d(20px, 110px, -160px) rotateX(5deg) rotateY(-28deg) rotateZ(-10deg);
}

body.is-ready .hero-card:nth-of-type(2) {
    transform: translate3d(-56px, 26px, -90px) rotateX(2deg) rotateY(21deg) rotateZ(-1deg);
}

body.is-ready .hero-card:nth-of-type(3) {
    transform: translate3d(78px, 52px, 0) rotateX(1deg) rotateY(-10deg) rotateZ(11deg);
}

.hero-card:hover {
    border-color: rgba(240, 195, 140, 0.48);
    filter: saturate(1.08);
}

body.is-ready .hero-card:hover:nth-of-type(1) {
    transform: translate3d(6px, 94px, -120px) rotateX(3deg) rotateY(-22deg) rotateZ(-12deg);
}

body.is-ready .hero-card:hover:nth-of-type(2) {
    transform: translate3d(-74px, 14px, -70px) rotateX(0deg) rotateY(18deg) rotateZ(-4deg);
}

body.is-ready .hero-card:hover:nth-of-type(3) {
    transform: translate3d(92px, 38px, 20px) rotateX(0deg) rotateY(-8deg) rotateZ(13deg);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72);
    transition: transform 1s ease, filter 0.6s ease;
}

.hero-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.84);
}

.hero-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 25, 34, 0.06), rgba(5, 11, 17, 0.88)),
        linear-gradient(130deg, rgba(240, 195, 140, 0.18), transparent 40%);
}

.hero-card-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 24px 24px 22px;
}

.hero-card-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 0.92;
    margin: 10px 0 10px;
}

.hero-card-content p {
    max-width: none;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.62;
}

.hero-card-meta {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.hero-card-meta strong {
    color: var(--mint-strong);
    font-size: 18px;
}

.hero-card-meta span {
    color: var(--text-soft);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 10px;
    transform: translateX(-50%);
    color: var(--text-faint);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-scroll-cue span {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(240, 195, 140, 0.9));
    animation: cuePulse 1.8s ease-in-out infinite;
}

.section-intro {
    padding-top: 18px;
}

.section-intro-panel {
    display: grid;
    gap: 16px;
    justify-items: center;
    text-align: center;
    padding: 30px 34px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 30, 39, 0.82), rgba(8, 18, 25, 0.82));
    border: 1px solid var(--line);
    box-shadow: var(--glow);
}

.section-intro-panel p {
    max-width: 820px;
    color: var(--text-soft);
    line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */
.btn,
.btn-ver,
.btn-wsp,
.btn-reserva,
.btn-pago {
    border: 0;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    color: var(--button-text);
    background: linear-gradient(135deg, var(--button-grad-start), var(--button-grad-end));
    box-shadow: 0 14px 36px var(--button-shadow);
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
}

.btn:hover,
.btn-ver:hover,
.btn-wsp:hover,
.btn-reserva:hover,
.btn-pago:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 18px 42px rgba(228, 178, 113, 0.32);
}

.btn-secondary {
    color: var(--text);
    background: rgba(10, 28, 37, 0.48);
    border: 1px solid var(--line);
    box-shadow: none;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(14, 35, 45, 0.72);
    box-shadow: none;
}

.hero .btn {
    color: var(--hero-button-text);
    background: linear-gradient(135deg, var(--hero-button-start), var(--hero-button-end));
    box-shadow: 0 14px 36px var(--hero-button-shadow);
}

.hero .btn:hover {
    box-shadow: 0 18px 42px rgba(121, 206, 194, 0.3);
}

.hero .btn-secondary {
    color: var(--text);
    background: rgba(10, 28, 37, 0.46);
    border: 1px solid rgba(137, 207, 199, 0.28);
    box-shadow: none;
}

.btn-ver,
.btn-wsp,
.btn-reserva,
.btn-pago {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    font-size: 14px;
}

/* =========================
   GLASS PANEL GROUPS
========================= */
.destacado,
.benefit-card,
.testimonial-card,
.cta-panel,
.site-footer,
.info-card,
.faq-item,
.map-card,
.content-columns article,
.descripcion,
.acciones,
.galeria,
.detail-faq {
    background: linear-gradient(180deg, rgba(11, 29, 38, 0.84), rgba(7, 18, 26, 0.84));
    border: 1px solid var(--line);
    box-shadow: var(--glow);
    backdrop-filter: blur(8px);
}

/* =========================
   FEATURED
========================= */
.destacado {
    position: relative;
    height: clamp(420px, 58vh, 620px);
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.destacado img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.63);
}

.destacado-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(12, 31, 41, 0.22), rgba(5, 11, 17, 0.88));
}

.destacado-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
    padding: 0 34px;
    z-index: 2;
    max-width: 720px;
}

.destacado-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.9;
    margin: 13px 0 8px;
}

.destacado-content p {
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 22px;
}

.precio {
    color: var(--mint-strong);
    font-size: clamp(32px, 4.3vw, 48px);
    font-weight: 800;
    letter-spacing: 0.03em;
}

/* =========================
   CARD FEED
========================= */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 16px 8px 4px;
}

.card {
    --lift: 0px;
    position: relative;
    width: min(100%, 280px);
    min-height: 390px;
    margin: 0 -16px 22px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(240, 226, 205, 0.18);
    background: var(--bg-deep);
    box-shadow: var(--glow);
    isolation: isolate;
    transform: translateY(var(--lift));
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:nth-child(2n) {
    --lift: 22px;
}

.card:nth-child(3n) {
    --lift: 40px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.card:hover {
    transform: translateY(calc(var(--lift) - 8px));
    border-color: rgba(240, 195, 140, 0.42);
}

.card:hover img {
    transform: scale(1.07);
    filter: brightness(0.72);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 20, 28, 0.08), rgba(3, 12, 18, 0.92));
}

.card-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
}

.card-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    line-height: 0.92;
    margin: 10px 0 8px;
}

.card-content p {
    color: rgba(228, 245, 244, 0.82);
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 14px;
}

.card-price {
    color: var(--mint-strong);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 14px;
}

/* =========================
   INFO BLOCKS
========================= */
.info-grid,
.content-columns,
.faq-list,
.benefits-grid,
.testimonials-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

.info-grid,
.faq-list {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.content-columns {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.faq-item,
.map-card,
.content-columns article,
.benefit-card,
.testimonial-card,
.descripcion,
.acciones,
.galeria,
.detail-faq {
    border-radius: var(--radius-lg);
    padding: 26px;
}

.info-card h3,
.faq-item h3,
.content-columns h3,
.map-card h3,
.descripcion h2,
.galeria h2,
.detail-faq h2,
.benefit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 12px;
}

.info-card h3,
.faq-item h3,
.content-columns h3,
.map-card h3,
.benefit-card h3 {
    font-size: clamp(30px, 3.8vw, 40px);
    line-height: 0.95;
}

.descripcion h2,
.galeria h2,
.detail-faq h2 {
    font-size: clamp(34px, 4.8vw, 48px);
    line-height: 0.93;
}

.info-card p,
.faq-item p,
.content-columns p,
.benefit-card p,
.testimonial-card p,
.site-footer p,
.footer-list,
.seo-supporting-copy,
.breadcrumb,
.detalle-summary,
.descripcion {
    color: var(--text-soft);
    line-height: 1.72;
}

.seo-supporting-copy {
    max-width: 880px;
    margin: 24px auto 0;
    text-align: center;
}

.seo-supporting-copy a,
.breadcrumb a,
.footer-list a {
    color: var(--mint-strong);
}

.breadcrumb-shell {
    padding-bottom: 0;
}

.breadcrumb {
    font-size: 14px;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--mint-strong);
    font-weight: 800;
    background: rgba(137, 207, 199, 0.16);
    border: 1px solid rgba(240, 226, 205, 0.28);
    margin-bottom: 16px;
}

.testimonial-card strong {
    font-size: 20px;
}

.testimonial-card span {
    margin-top: 6px;
    display: block;
    color: var(--mint);
    font-size: 14px;
}

/* =========================
   CTA + FOOTER
========================= */
.cta-band {
    padding-top: 16px;
    padding-bottom: 56px;
}

.cta-panel {
    border-radius: var(--radius-xl);
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.cta-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.2vw, 50px);
    line-height: 0.92;
    margin: 12px 0 10px;
}

.site-footer {
    width: min(100%, var(--container));
    margin: 0 auto 32px;
    border-radius: var(--radius-xl);
    padding: 34px 24px 24px;
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
}

.site-footer h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 46px);
    line-height: 0.94;
    margin: 12px 0;
}

.site-footer h4 {
    font-size: 17px;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    text-decoration: none;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

/* =========================
   DETAIL PAGE
========================= */
.detalle-hero {
    width: min(100%, 920px);
    margin: 14px auto 0;
    min-height: 360px;
    max-height: 440px;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--glow);
}

.detalle-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.62);
}

.detalle-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 19, 27, 0.12), rgba(4, 10, 16, 0.88));
}

.detalle-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    max-width: 720px;
    padding: 0;
}

.detalle-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 0.9;
    margin: 10px 0 12px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.detalle-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.detalle-meta .precio {
    padding: 8px 0;
}

.detalle-summary {
    margin-top: 12px;
    max-width: 560px;
    padding-left: 16px;
    border-left: 2px solid var(--line-strong);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.acciones-hero {
    margin-top: 20px;
    gap: 8px;
    display: inline-flex;
    width: auto;
    flex-wrap: nowrap;
    align-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
}

.acciones-hero .btn-wsp,
.acciones-hero .btn-reserva {
    min-width: 138px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.acciones-hero .btn-reserva {
    background: rgba(10, 28, 37, 0.3);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.acciones-hero .btn-reserva:hover {
    background: rgba(14, 35, 45, 0.46);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.acciones-hero .btn-wsp {
    background: linear-gradient(135deg, var(--button-grad-start), var(--button-grad-end));
    color: var(--button-text);
}

.acciones-hero .btn-wsp:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.detalle-contenido {
    width: min(100%, var(--container));
    margin: 28px auto 0;
    padding: 0 22px;
    display: grid;
    gap: 22px;
}

.acciones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.galeria {
    display: grid;
    gap: 14px;
}

.galeria img {
    border-radius: 16px;
    border: 1px solid var(--line);
}

.detail-faq {
    margin-top: 0;
}

.map-card iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: 14px;
    margin-top: 12px;
}

.link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.link-list a {
    text-decoration: none;
    border-radius: 999px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    background: rgba(10, 28, 37, 0.44);
}

/* =========================
   CART
========================= */
.carrito-title {
    margin-bottom: 0;
}

.carrito-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.8fr);
    gap: 22px;
    align-items: start;
}

.carrito-panel,
.carrito-summary {
    min-height: 100%;
}

.carrito-list {
    display: grid;
    gap: 16px;
}

.carrito-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.carrito-item:first-child {
    padding-top: 8px;
    border-top: 0;
}

.carrito-item-main h3,
.carrito-summary h2 {
    font-family: 'Cormorant Garamond', serif;
}

.carrito-item-main h3 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: 0.95;
    margin: 10px 0 8px;
}

.carrito-item-main p,
.carrito-note,
.carrito-empty p {
    color: var(--text-soft);
    line-height: 1.72;
}

.carrito-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 150px));
    gap: 12px;
    margin-top: 18px;
    align-items: end;
}

.carrito-field {
    display: grid;
    gap: 8px;
}

.carrito-field span,
.carrito-item-side small {
    color: var(--text-faint);
    font-size: 13px;
    line-height: 1.5;
}

.carrito-field input {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(10, 28, 37, 0.52);
    color: var(--text);
    padding: 0 14px;
    font: inherit;
}

.carrito-update {
    width: fit-content;
    min-width: 210px;
    margin-top: 4px;
}

.carrito-item-side {
    min-width: 140px;
    display: grid;
    justify-items: end;
    gap: 12px;
    text-align: right;
}

.carrito-item-side strong,
.carrito-total {
    color: var(--mint-strong);
    font-weight: 800;
}

.carrito-item-side strong {
    font-size: 26px;
}

.carrito-summary {
    position: sticky;
    top: 96px;
    border-radius: var(--radius-lg);
    padding: 26px;
}

.carrito-summary h2 {
    font-size: clamp(34px, 4.2vw, 46px);
    line-height: 0.92;
    margin: 12px 0 10px;
}

.carrito-total {
    font-size: clamp(34px, 4vw, 48px);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.carrito-actions {
    display: grid;
    gap: 12px;
    width: 100%;
}

.carrito-remove {
    color: var(--mint-strong);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.carrito-empty {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.is-disabled {
    pointer-events: none;
    opacity: 0.45;
}

/* =========================
   WHATSAPP MODAL
========================= */
body.is-wa-modal-open {
    overflow: hidden;
}

body.is-auth-modal-open {
    overflow: hidden;
}

.wa-modal[hidden] {
    display: none;
}

.auth-modal[hidden] {
    display: none;
}

.wa-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: center;
    padding: 22px;
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 1350;
    display: grid;
    place-items: center;
    padding: 22px;
}

.wa-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 11, 17, 0.72);
    backdrop-filter: blur(8px);
}

.auth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 11, 17, 0.8);
    backdrop-filter: blur(8px);
}

.wa-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(11, 29, 38, 0.96), rgba(7, 18, 26, 0.96));
    border: 1px solid var(--line);
    box-shadow: var(--glow);
}

.auth-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(11, 29, 38, 0.98), rgba(7, 18, 26, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--glow);
}

.wa-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: var(--text);
    background: rgba(10, 28, 37, 0.72);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: var(--text);
    background: rgba(10, 28, 37, 0.72);
}

.wa-modal-dialog h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 48px);
    line-height: 0.92;
    margin: 12px 0 10px;
}

.wa-modal-dialog p {
    color: var(--text-soft);
    line-height: 1.7;
}

.auth-modal-dialog h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 52px);
    line-height: 0.92;
    margin: 12px 0 10px;
}

.auth-modal-lead {
    color: var(--text-soft);
    line-height: 1.72;
    margin-bottom: 20px;
    font-size: clamp(16px, 2.3vw, 19px);
}

.auth-google-btn,
.auth-dismiss-btn {
    width: 100%;
}

.auth-modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.auth-benefits {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.auth-benefit {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(240, 195, 140, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.auth-benefit strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 15px;
}

.auth-benefit span {
    display: block;
    color: var(--text-faint);
    line-height: 1.55;
    font-size: 14px;
}

.auth-google-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.auth-google-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.88);
    color: #1f2937;
    font-size: 16px;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.auth-dismiss-btn {
    margin-top: 12px;
}

.account-layout {
    display: grid;
    gap: 22px;
}

.account-hero {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.account-hero-main {
    display: flex;
    align-items: center;
    gap: 18px;
}

.account-avatar {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--hero-button-start), var(--hero-button-end));
    color: var(--hero-button-text);
    font-size: 34px;
    font-weight: 800;
}

.account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-hero h2,
.account-card h2 {
    font-family: 'Cormorant Garamond', serif;
}

.account-hero h2 {
    font-size: clamp(38px, 5vw, 54px);
    line-height: 0.92;
    margin: 10px 0 6px;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.account-card {
    background: linear-gradient(180deg, rgba(12, 29, 38, 0.82), rgba(8, 20, 28, 0.9));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.account-card-wide {
    grid-column: 1 / -1;
}

.account-form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.account-form label {
    display: grid;
    gap: 8px;
}

.account-form span,
.account-list-item span,
.hint {
    color: var(--text-faint);
}

.account-form input {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(10, 28, 37, 0.56);
    color: var(--text);
    padding: 0 14px;
    font: inherit;
}

.account-form input:disabled {
    opacity: 0.78;
}

.account-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.account-list-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.status-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-confirmado {
    background: rgba(34, 197, 94, 0.16);
    color: #bbf7d0;
}

.status-cancelado {
    background: rgba(239, 68, 68, 0.16);
    color: #fecaca;
}

.status-pendiente {
    background: rgba(245, 158, 11, 0.16);
    color: #fde68a;
}

.alert-inline {
    border-radius: 16px;
    padding: 12px 14px;
    margin-top: 16px;
    border: 1px solid transparent;
}

.alert-inline-error {
    color: #fecaca;
    background: rgba(127, 29, 29, 0.34);
    border-color: rgba(248, 113, 113, 0.3);
}

.alert-inline-success {
    color: #bbf7d0;
    background: rgba(20, 83, 45, 0.34);
    border-color: rgba(74, 222, 128, 0.3);
}

.wa-modal-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.wa-modal-field {
    display: grid;
    gap: 8px;
}

.wa-modal-field span {
    color: var(--text-faint);
    font-size: 13px;
}

.wa-modal-field input {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(10, 28, 37, 0.56);
    color: var(--text);
    padding: 0 14px;
    font: inherit;
}

/* =========================
   MOTION
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes cuePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.82);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.08);
    }
}

body.is-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

body.is-ready [data-reveal="scale"] {
    transform: translate3d(0, 30px, 0) scale(0.94);
}

body.is-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1080px) {
    .nav-links {
        display: none;
    }

    .nav-shell {
        flex-wrap: wrap;
    }

    .hero {
        min-height: 64vh;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "stage"
            "actions"
            "facts";
        gap: 18px;
    }

    .hero-content {
        width: min(100%, 760px);
        text-align: center;
        margin: 0 auto;
    }

    .hero p {
        margin: 0 auto;
    }

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

    .hero-stage {
        min-height: 560px;
        width: min(100%, 640px);
        margin: 0 auto;
    }

    .hero-facts {
        margin-top: 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .navbar {
        padding: 14px 14px;
    }

    .section,
    .detalle-contenido {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero {
        margin-top: 0;
        border-radius: 0;
        min-height: 92vh;
        padding: 88px 14px 56px;
    }

    .hero-showcase {
        padding-top: 96px;
        padding-bottom: 84px;
    }

    .hero h1 {
        font-size: clamp(42px, 11vw, 64px);
    }

    .hero-facts {
        grid-template-columns: 1fr;
        margin-top: 8px;
    }

    .hero-stage {
        min-height: 420px;
        width: 100%;
        perspective: none;
    }

    .hero-card {
        width: min(100%, 290px);
        height: 360px;
    }

    .hero-card:nth-of-type(1) {
        right: 6%;
        top: 18%;
    }

    .hero-card:nth-of-type(2) {
        left: 0;
        top: 6%;
    }

    .hero-card:nth-of-type(3) {
        right: 18%;
        top: 2%;
    }

    body.is-ready .hero-card:nth-of-type(1) {
        transform: translate3d(10px, 72px, 0) rotateZ(-7deg);
    }

    body.is-ready .hero-card:nth-of-type(2) {
        transform: translate3d(-16px, 6px, 0) rotateZ(-1deg);
    }

    body.is-ready .hero-card:nth-of-type(3) {
        transform: translate3d(30px, 26px, 0) rotateZ(8deg);
    }

    .hero-card-content {
        padding: 18px;
    }

    .hero-card-content h2 {
        font-size: 32px;
    }

    .btn-contacto {
        font-size: 13px;
        padding: 10px 16px;
    }

    .account-chip {
        width: 100%;
        justify-content: center;
    }

    .auth-modal-dialog {
        padding: 24px 20px 20px;
        border-radius: 24px;
    }

    .auth-modal-dialog h2 {
        font-size: clamp(34px, 11vw, 50px);
    }

    .auth-benefit {
        padding: 12px 14px;
    }

    .cards {
        gap: 12px;
        justify-content: stretch;
        padding: 0;
    }

    .card {
        --lift: 0px;
        width: 100%;
        min-height: 360px;
        margin: 0;
    }

    .card-content h3 {
        font-size: 31px;
    }

    .destacado {
        height: clamp(340px, 46vh, 460px);
        min-height: 340px;
    }

    .destacado-content {
        bottom: 20px;
        padding: 0 20px;
    }

    .testimonials-grid,
    .benefits-grid,
    .info-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .cta-panel,
    .site-footer,
    .section-intro-panel,
    .info-card,
    .faq-item,
    .map-card,
    .content-columns article,
    .benefit-card,
    .testimonial-card,
    .descripcion,
    .acciones,
    .galeria,
    .detail-faq {
        border-radius: 18px;
        padding: 18px;
    }

    .detalle-hero {
        min-height: 390px;
        border-radius: 20px;
    }

    .detalle-info {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .acciones {
        flex-direction: column;
    }

    .carrito-layout {
        grid-template-columns: 1fr;
    }

    .account-hero,
    .account-hero-main,
    .account-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .carrito-summary {
        position: static;
    }

    .carrito-item {
        flex-direction: column;
    }

    .carrito-item-side {
        justify-items: start;
        text-align: left;
    }

    .carrito-form {
        grid-template-columns: 1fr;
    }

    .carrito-update {
        width: 100%;
        min-width: 0;
    }

    .btn,
    .btn-secondary,
    .btn-ver,
    .btn-wsp,
    .btn-reserva,
    .btn-pago {
        width: 100%;
        text-align: center;
    }

    .cta-panel {
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 24px;
    }

    .logo-kicker {
        font-size: 9px;
    }

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

    .hero-scroll-cue {
        bottom: 18px;
    }

    .section-title h2,
    .section-title h1 {
        line-height: 0.92;
    }
}
