/* ════════════════════════════════════════
   ÉCLAT BY VERÓNICA DÍAZ — Styles
   ════════════════════════════════════════ */

/* ── Custom cursor ── */
*, *::before, *::after {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='9' fill='none' stroke='%237BA89C' stroke-width='1.2'/%3E%3Ccircle cx='11' cy='11' r='2' fill='%237BA89C'/%3E%3C/svg%3E") 11 11, crosshair;
}
a, button, [role="button"], .btn, input, select, textarea, label {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='9' fill='%23C1B8CC' fill-opacity='0.22' stroke='%23a892b8' stroke-width='1.4'/%3E%3Ccircle cx='11' cy='11' r='3' fill='%23a892b8'/%3E%3C/svg%3E") 11 11, pointer;
}

/* ── Variables ── */
:root {
    --teal:       #4e9e94;
    --teal-mid:   #7BA89C;
    --teal-light: #A8C0BA;
    --sage:       #7BA89C;
    --lavender:   #C1B8CC;
    --rose:       #9b72b8;
    --rose-light: #C1B8CC;

    --dark:    #0d1017;
    --darker:  #07090d;
    --text:    #1a1e24;
    --text-mid:#4e5560;
    --text-mute:#9199a3;

    --bg:       #ffffff;
    --bg-soft:  #f3f8f6;
    --bg-pearl: #f4f2f8;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Montserrat', system-ui, sans-serif;

    --radius: 18px;
    --shadow: 0 8px 40px rgba(0,0,0,.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,.14);

    --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ── Container ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* ── Section headers ── */
.section-eyebrow {
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #4e9e94, #9b72b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    display: inline-block;
}
.section-eyebrow.light { color: var(--rose-light); }

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 72px);
}
.section-header h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--text);
}
.section-header h2::after {
    content: '';
    display: block;
    width: 48px; height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, #4e9e94, #9b72b8);
    border-radius: 2px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
/* Shimmer sweep en botones primarios */
.btn--primary::after,
.btn--light::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
    animation: btnShimmer 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes btnShimmer {
    0%     { left: -150%; }
    55%, 100% { left: 180%; }
}
.btn--primary {
    background: var(--rose);
    color: #fff;
    border: 2px solid var(--rose);
}
.btn--primary:hover {
    background: #8a7a9e;
    border-color: #8a7a9e;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168,146,184,.4);
}
.btn--outline {
    background: transparent;
    color: var(--rose);
    border: 2px solid var(--rose);
}
.btn--outline:hover {
    background: var(--rose);
    color: #fff;
    transform: translateY(-2px);
}
.btn--light {
    background: var(--rose);
    color: #fff;
    border: 2px solid var(--rose);
    font-weight: 700;
}
.btn--light:hover {
    background: #8a7a9e;
    border-color: #8a7a9e;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168,146,184,.4);
}
.btn--ghost-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.75);
}
.btn--ghost-light:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.95);
    transform: translateY(-2px);
}
.btn--light-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.65);
}
.btn--light-outline:hover {
    background: rgba(255,255,255,.15);
    transform: translateY(-2px);
}

/* ── Hero primary button — gradiente de marca ── */
.btn--hero-primary {
    background: linear-gradient(135deg, #4e9e94 0%, #9b72b8 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: .12em;
    box-shadow: 0 8px 28px rgba(78,158,148,.4);
}
.btn--hero-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
    animation: btnShimmer 3s ease-in-out infinite;
    pointer-events: none;
}
.btn--hero-primary:hover {
    background: linear-gradient(135deg, #3d8c82 0%, #8560a6 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(78,158,148,.5);
}

/* ── Reveal animations ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s ease, transform .75s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════
   PARTICLE CANVAS
   ════════════════════════════════════════ */
/* ── Intro Fade elegante ── */
#eclatIntro {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
    background: linear-gradient(135deg, #1c3832 0%, #22203a 50%, #1a1528 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 1s ease;
}
.ei-glow {
    position: absolute;
    width: clamp(280px, 50vw, 520px);
    height: clamp(280px, 50vw, 520px);
    background: radial-gradient(ellipse, rgba(123,168,156,.22) 0%, transparent 70%);
    border-radius: 50%;
    animation: eiGlowPulse 4s ease-in-out infinite;
}
@keyframes eiGlowPulse {
    0%,100% { transform: scale(1); opacity: .6; }
    50%      { transform: scale(1.2); opacity: 1; }
}
.ei-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3.5rem, 15vw, 10rem);
    font-weight: 300;
    letter-spacing: .4em;
    color: white;
    position: relative; z-index: 2;
    animation: eiFadeRise 2s cubic-bezier(.16,1,.3,1) .2s forwards;
    opacity: 0;
}
.ei-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(.55rem, 1.4vw, .85rem);
    letter-spacing: .4em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    position: relative; z-index: 2;
    animation: eiFadeRise 2s cubic-bezier(.16,1,.3,1) .6s forwards;
    opacity: 0;
    margin-top: 14px;
}
@keyframes eiFadeRise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
/* ── Urgency bar ── */
.urgency-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 950;
    background: linear-gradient(90deg, #6a9a8e 0%, #9d8aaa 100%);
    color: white;
    text-align: center;
    padding: 9px 40px 9px 20px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.urgency-bar a { color: white; text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.urgency-dot {
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: urgencyPulse 1.6s ease-in-out infinite;
}
@keyframes urgencyPulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.4; transform:scale(1.4); }
}
.urgency-close {
    position: absolute; right: 12px;
    background: none; border: none; color: rgba(255,255,255,.7);
    font-size: .85rem; cursor: pointer; padding: 4px;
}
.urgency-close:hover { color: white; }

#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px clamp(20px, 5vw, 60px);
    transition: padding var(--transition);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .12em;
    color: #fff;
    display: flex;
    align-items: baseline;
    transition: color var(--transition);
}
.logo-accent { color: var(--rose-light); }
.logo-by {
    font-family: var(--sans);
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .1em;
    color: rgba(255,255,255,.55);
    margin-left: 10px;
    transition: color var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.82);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 3px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1.5px;
    background: white;
    border-radius: 2px;
    transition: width .3s ease, left .3s ease;
}
.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,.5);
}
.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-reservar {
    background: rgba(255,255,255,.14) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.38) !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    transition: background var(--transition), border-color var(--transition) !important;
}
.nav-reservar:hover {
    background: rgba(255,255,255,.26) !important;
    border-color: rgba(255,255,255,.65) !important;
}

/* Scrolled nav */
#nav.is-scrolled {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,.07);
}
#nav.is-scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }
#nav.is-scrolled .nav-logo  { color: var(--text); }
#nav.is-scrolled .logo-accent { color: var(--rose); }
#nav.is-scrolled .logo-by   { color: var(--text-mute); }
#nav.is-scrolled .nav-links a { color: var(--text-mid); }
#nav.is-scrolled .nav-links a::after { background: var(--teal); }
#nav.is-scrolled .nav-links a:hover { color: var(--teal); text-shadow: none; }
#nav.is-scrolled .nav-reservar {
    background: var(--rose) !important;
    color: #fff !important;
    border-color: var(--rose) !important;
}
#nav.is-scrolled .nav-reservar:hover {
    background: #8a7a9e !important;
    border-color: #8a7a9e !important;
}

/* Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.menu-btn span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
    transform-origin: center;
}
#nav.is-scrolled .menu-btn span { background: var(--text); }
.menu-btn.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    min-height: -webkit-fill-available;
    background: #fff;
    z-index: 980;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 36px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(32px);
    transition: opacity .32s ease, visibility .32s ease, transform .36s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}
.mobile-menu ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.mobile-menu ul li:first-child { border-top: 1px solid rgba(0,0,0,.07); }
.mobile-menu a {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 5vw, 1.75rem);
    font-weight: 300;
    color: var(--text);
    letter-spacing: .03em;
    transition: color .22s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    width: 100%;
}
.mobile-menu a::after {
    content: '→';
    font-family: var(--sans);
    font-size: .9rem;
    color: var(--teal-mid);
    opacity: .55;
    transition: opacity .22s;
}
.mobile-menu a:hover { color: var(--teal-mid); }
.mobile-menu a:hover::after { opacity: 1; }
.mobile-reservar {
    font-family: var(--sans) !important;
    font-size: .78rem !important;
    font-weight: 600 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    background: var(--teal-mid) !important;
    border: none !important;
    padding: 16px 0 !important;
    border-radius: 50px !important;
    display: block !important;
    text-align: center !important;
    margin-top: 28px !important;
    width: 100% !important;
    justify-content: center !important;
}
.mobile-reservar::after { display: none !important; }
.mobile-social {
    margin-top: 20px;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.mobile-social a { color: var(--teal-mid); }
.mobile-close {
    position: absolute;
    top: 24px; right: 28px;
    font-size: 1.4rem;
    color: var(--text-mute);
    transition: color .2s;
    line-height: 1;
}
.mobile-close:hover { color: var(--text); }
/* Hamburger → dark when menu open (white background) */
.menu-btn.is-open span { background: var(--text) !important; }
.mobile-close:hover { color: #fff; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Layer 1: gradiente exacto del logo */
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #7BA89C  0%,
        #90B5AD 35%,
        #A8B4BE 58%,
        #B8B2C8 78%,
        #C1B8CC 100%
    );
    background-size: 100% 100%;
    animation: gradientBreath 10s ease-in-out infinite alternate;
}
@keyframes gradientBreath {
    0%   { filter: brightness(1)   saturate(1); }
    50%  { filter: brightness(1.04) saturate(1.06); }
    100% { filter: brightness(1)   saturate(1); }
}

/* Layer 2: animated wave lines matching the logo */
.hero-wave-lines {
    position: absolute;
    inset: -30%;
    background: repeating-linear-gradient(
        transparent,
        transparent 22px,
        rgba(255,255,255,.07) 22px,
        rgba(255,255,255,.07) 23px
    );
    filter: url(#waveFilter);
    animation: waveDrift 15s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes waveDrift {
    0%   { transform: translateX(-4%) translateY(0px)   scale(1.1)  rotate(0deg); }
    33%  { transform: translateX( 3%) translateY(-4%)   scale(1.12) rotate(1deg); }
    66%  { transform: translateX(-2%) translateY(-2%)   scale(1.11) rotate(.5deg); }
    100% { transform: translateX(-6%) translateY(-6%)   scale(1.1)  rotate(2deg); }
}

/* Layer 3: hidden */
.hero-photo-layer {
    display: none;
}

/* Watermark ÉCLAT — elemento decorativo de fondo */
.hero-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}
.hero-watermark span:first-child {
    font-family: var(--serif);
    font-size: clamp(130px, 24vw, 320px);
    font-weight: 300;
    letter-spacing: .22em;
    color: rgba(255,255,255,.11);
    line-height: 1;
    animation: wmarkDrift 20s ease-in-out infinite alternate;
}
@keyframes wmarkDrift {
    from { transform: scale(1) translateX(-10px); }
    to   { transform: scale(1.04) translateX(10px); }
}
.hw-sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    letter-spacing: .12em;
    color: rgba(255,255,255,.13) !important;
    margin-top: -8px;
}

/* Layer 4: velo solo en la zona del nav para que É sea visible */
.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.30) 0%, rgba(0,0,0,.12) 15%, transparent 35%, transparent 80%, rgba(0,0,0,.08) 100%);
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: clamp(110px, 16vh, 160px) clamp(20px, 6vw, 80px) clamp(70px, 12vh, 120px);
    max-width: 860px;
    margin: 0 auto;
    will-change: transform, opacity;
}
.hero-eyebrow {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
    text-shadow: 0 1px 12px rgba(0,0,0,.25);
    margin-bottom: 26px;
    animation: heroUp .95s .15s both;
}
.hero-content h1 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 7.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.5), 0 4px 32px rgba(0,0,0,.3), 0 1px 4px rgba(0,0,0,.4);
    margin-bottom: 24px;
    animation: heroUp .95s .3s both;
}
.hero-content h1 em {
    font-style: italic;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow:
        0 0 38px rgba(138, 122, 181, 0.75),
        0 0 80px rgba(138, 122, 181, 0.40),
        0 2px 10px rgba(0, 0, 0, 0.45);
    filter: none;
}
@keyframes shimmerEm {
    0%   { background-position: 100% 50%; }
    50%  { background-position:   0% 50%; }
    100% { background-position: 100% 50%; }
}
.hero-sub {
    font-size: clamp(.9rem, 1.8vw, 1.12rem);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,.96);
    text-shadow: 0 1px 12px rgba(0,0,0,.4), 0 2px 20px rgba(0,0,0,.25);
    margin-bottom: 44px;
    animation: heroUp .95s .45s both;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroUp .95s .6s both;
}
@keyframes heroUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    display: block;
    width: 1.5px;
    height: 54px;
    background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
    margin: 0 auto;
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1) translateY(0); opacity: .6; }
    50%       { transform: scaleY(.55) translateY(8px); opacity: .25; }
}

/* ════════════════════════════════════════
   STATS
   ════════════════════════════════════════ */
.stats {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8f6 100%);
    padding: clamp(52px, 7vw, 84px) 0;
    border-bottom: 2px solid rgba(123,168,156,.1);
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 6vw, 72px);
    flex-wrap: wrap;
}
/* Stats tagline */
.stats-tagline {
    text-align: center;
    font-size: clamp(.78rem, 1.2vw, .9rem);
    color: var(--text-mid);
    letter-spacing: .04em;
    margin-bottom: clamp(28px, 4vw, 44px);
}
.stats-tagline strong { color: var(--teal); }

.stat-item {
    text-align: center;
    transition: transform .35s ease;
}
.stat-item:hover { transform: translateY(-4px); }
.stat-value {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(135deg, #4e9e94 0%, #9b72b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(78,158,148,.2));
}
.stat-star { font-size: 1.6rem; -webkit-text-fill-color: #9b72b8; }
.stat-label {
    margin-top: 9px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.stat-sep {
    width: 1px;
    height: 60px;
    background: rgba(0,0,0,.09);
}

/* ════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════ */
.about {
    background: linear-gradient(160deg, #e2eeeb 0%, #ebe7f4 100%);
    padding: clamp(80px, 11vw, 130px) 0;
    overflow: hidden;
    position: relative;
}
.about::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4e9e94, #7BA89C, #9b72b8);
}
/* About layout con foto */
.about-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
    max-width: 940px;
    margin: 0 auto;
}
.about-text-side { /* text content */ }
.about-photo-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
/* ── About photo — marco elegante ── */
.about-photo-frame {
    position: relative;
    width: clamp(220px, 26vw, 320px);
    flex-shrink: 0;
}
/* Esquina decorativa superior izquierda */
.apf-deco-tl {
    position: absolute;
    top: -8px; left: -8px;
    width: 44px; height: 44px;
    border-top: 2px solid #7BA89C;
    border-left: 2px solid #7BA89C;
    border-radius: 6px 0 0 0;
    z-index: 2; pointer-events: none;
    opacity: .7;
}
/* Esquina decorativa inferior derecha */
.apf-deco-br {
    position: absolute;
    bottom: -8px; right: -8px;
    width: 44px; height: 44px;
    border-bottom: 2px solid #C1B8CC;
    border-right: 2px solid #C1B8CC;
    border-radius: 0 0 6px 0;
    z-index: 2; pointer-events: none;
    opacity: .7;
}
/* Halo de color detrás */
.apf-glow {
    position: absolute;
    inset: 10px -10px -10px 10px;
    background: linear-gradient(135deg, rgba(123,168,156,.12) 0%, rgba(193,184,204,.12) 100%);
    border-radius: 20px;
    z-index: 0;
}
.about-photo-img {
    position: relative; z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,.18), 0 8px 20px rgba(0,0,0,.1);
    transition: transform .4s ease, box-shadow .4s ease;
}
.about-photo-frame:hover .about-photo-img {
    transform: translateY(-4px);
    box-shadow: 0 32px 70px rgba(0,0,0,.22), 0 0 40px rgba(78,127,124,.12);
}
.about-name-badge {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.anb-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: .02em;
}
.anb-role {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal-mid);
}
.about-features { align-items: flex-start; }

.about-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 24px;
}
.about-lead {
    font-size: 1.06rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-body {
    font-size: .93rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 32px;
}
.about-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    margin-bottom: 38px;
}
.feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .87rem;
    color: var(--text-mid);
}
.feat-dot { color: var(--teal); font-size: .7rem; flex-shrink: 0; }

/* ════════════════════════════════════════
   ESPECIALIDADES
   ════════════════════════════════════════ */
.especialidades {
    background: var(--bg-pearl);
    padding: clamp(60px, 9vw, 110px) 0;
}
.esp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-top: clamp(36px, 5vw, 56px);
}
.esp-card {
    background: white;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 44px) clamp(22px, 3vw, 36px);
    text-align: center;
    border: 1.5px solid rgba(78,158,148,.15);
    box-shadow: 0 8px 32px rgba(0,0,0,.06), 0 0 0 0 rgba(78,158,148,0);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
    overflow: hidden;
}
.esp-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(78,158,148,.04) 0%, rgba(155,114,184,.04) 100%);
    opacity: 0;
    transition: opacity .35s ease;
}
.esp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(78,158,148,.18), 0 8px 20px rgba(155,114,184,.12);
    border-color: rgba(78,158,148,.35);
}
.esp-card:hover::before { opacity: 1; }
.esp-icon {
    width: clamp(60px, 7vw, 78px);
    height: clamp(60px, 7vw, 78px);
    margin: 0 auto clamp(18px, 2.8vw, 28px);
    background: linear-gradient(135deg, #7BA89C 0%, #C1B8CC 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(123,168,156,.30);
    transition: transform .35s ease, box-shadow .35s ease;
}
.esp-card:hover .esp-icon {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 14px 36px rgba(123,168,156,.45);
}
.esp-icon svg {
    width: 52%; height: 52%;
    stroke: white;
}
.esp-icon img {
    width: 60%; height: 60%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.esp-card h3 {
    font-family: var(--serif);
    font-size: clamp(.95rem, 1.4vw, 1.2rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: .01em;
}
.esp-card p {
    font-size: clamp(.75rem, 1vw, .85rem);
    color: var(--text-muted);
    line-height: 1.65;
}
@media (max-width: 680px) {
    .esp-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

/* ════════════════════════════════════════
   MARQUEE FRASES
   ════════════════════════════════════════ */
.marquee-section {
    background: linear-gradient(135deg, #1c2e2b 0%, #22203a 50%, #1a1528 100%);
    padding: 0;
    overflow: hidden;
    user-select: none;
}
.marquee-track {
    padding: 16px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-track--alt {
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.025);
}
.marquee-inner {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    width: max-content;
}
.marquee-inner span {
    font-family: var(--serif);
    font-size: clamp(.95rem, 1.4vw, 1.3rem);
    font-weight: 300;
    letter-spacing: .12em;
    color: rgba(255,255,255,.85);
    padding: 0 clamp(18px, 2.5vw, 32px);
}
.marquee-inner span:nth-child(odd) {
    /* Alternar: texto claro o con color de marca */
    color: rgba(255,255,255,.85);
}
.mq-dot {
    font-size: .7rem !important;
    padding: 0 4px !important;
    letter-spacing: 0 !important;
    color: #7BA89C !important;
    opacity: .9;
}
.marquee-ltr {
    animation: marqueeLeft 28s linear infinite;
}
.marquee-rtl {
    animation: marqueeRight 22s linear infinite;
}
@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}
/* Pausa al hover */
.marquee-section:hover .marquee-ltr,
.marquee-section:hover .marquee-rtl {
    animation-play-state: paused;
}
/* Fade en los bordes */
.marquee-track::before,
.marquee-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; width: 80px;
    z-index: 2; pointer-events: none;
}
.marquee-track { position: relative; }
.marquee-track::before {
    left: 0;
    background: linear-gradient(to right, #1c2e2b, transparent);
}
.marquee-track::after {
    right: 0;
    background: linear-gradient(to left, #1a1528, transparent);
}

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services {
    background: var(--bg);
    padding: clamp(80px, 11vw, 130px) 0;
}

/* ── Acordeón ── */
.accordion { max-width: 780px; margin: 0 auto; }

.acc-item {
    border-bottom: 1px solid rgba(122,156,153,.22);
}
.acc-item:first-child { border-top: 1px solid rgba(122,156,153,.22); }

.acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color .25s;
}
.acc-btn:hover .acc-title { color: var(--teal-mid); }
.acc-btn:hover .acc-heart { color: var(--teal-mid); }

.acc-heart {
    font-size: 1rem;
    color: var(--rose);
    flex-shrink: 0;
    transition: color .25s;
    margin-right: 2px;
}

.acc-title {
    font-family: var(--sans);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 500;
    color: var(--text);
    letter-spacing: .02em;
    transition: color .25s;
    flex: 1;
}

.acc-arrow {
    font-size: .85rem;
    color: var(--text-mute);
    transition: transform .35s ease;
    flex-shrink: 0;
    line-height: 1;
}
.acc-item.is-open .acc-arrow { transform: rotate(180deg); }
.acc-item.is-open .acc-title { color: var(--teal-mid); }
.acc-item.is-open .acc-heart { color: var(--teal-mid); }

.acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s ease;
}
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }

.acc-inner {
    overflow: hidden;
    padding: 0 4px;
}
.acc-item.is-open .acc-inner { padding-bottom: 16px; }

/* Filas de tratamiento */
.tr-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.tr-row:last-child { border-bottom: none; }

.tr-name {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.5;
}
.tr-name em {
    font-style: normal;
    font-size: .78rem;
    color: var(--text-mute);
    display: block;
    margin-top: 2px;
}

.tr-price {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--teal-mid);
    white-space: nowrap;
}
.tr-price--free { color: var(--rose); }

.tr-btn {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--text-mid);
    border: 1.5px solid rgba(0,0,0,.15);
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all .22s;
}
.tr-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

.services-cta {
    text-align: center;
    margin-top: 56px;
}

/* ════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════ */
.reviews {
    background: var(--bg-pearl);
    padding: clamp(80px, 11vw, 130px) 0;
    overflow: visible;
}

/* ── Google Reviews cards ── */

/* ── Review cards grid ── */
.gr-cards-wrap {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}
.gr-cards-wrap::-webkit-scrollbar { display: none; }
.gr-cards-wrap:active { cursor: grabbing; }

.gr-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.07);
    min-width: 270px;
    max-width: 290px;
    flex-shrink: 0;
    transition: box-shadow .25s ease, transform .25s ease;
}
.gr-card:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

/* Card top row: avatar + name/date + G icon */
.gr-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.gr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gr-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.gr-name {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gr-date {
    font-size: .7rem;
    color: var(--text-mute);
}
.gr-g-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.gr-g-icon svg { width: 20px; height: 20px; }
.gr-booksy-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #009fd9;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Stars + text */
.gr-card-stars {
    color: #fbbc04;
    font-size: .95rem;
    letter-spacing: .06em;
    margin-bottom: 10px;
}
.gr-card-text {
    font-size: .82rem;
    line-height: 1.62;
    color: #4a4f58;
}
.gr-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.gr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s, transform .3s;
}
.gr-dot.is-active {
    background: var(--rose);
    transform: scale(1.35);
}

/* ════════════════════════════════════════
   BONOS & TARJETAS
   ════════════════════════════════════════ */
.bonos {
    position: relative;
    padding: clamp(80px, 11vw, 140px) 0;
    overflow: hidden;
    color: #fff;
    background: #07090d;
}
/* Orbes atmosféricos de fondo */
.bonos::before {
    content: '';
    position: absolute;
    width: clamp(420px, 65vw, 900px);
    height: clamp(420px, 65vw, 900px);
    background: radial-gradient(circle, rgba(78,127,124,.2) 0%, transparent 60%);
    top: -30%;
    right: -12%;
    pointer-events: none;
    z-index: 0;
}
.bonos::after {
    content: '';
    position: absolute;
    width: clamp(280px, 42vw, 580px);
    height: clamp(280px, 42vw, 580px);
    background: radial-gradient(circle, rgba(181,174,200,.15) 0%, transparent 60%);
    bottom: -20%;
    left: 4%;
    pointer-events: none;
    z-index: 0;
}
.bonos-bg { display: none; }
.bonos-wave { display: none; }
.bonos-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(44px, 8vw, 110px);
    align-items: center;
}
.bonos-text h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.25;
}
.bonos-lead {
    font-size: 1rem;
    color: rgba(255,255,255,.78);
    line-height: 1.78;
    margin-bottom: 28px;
}
.bonos-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 38px;
}
.bonos-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: rgba(255,255,255,.82);
}
.bonos-list li span { color: var(--rose-light); flex-shrink: 0; font-size: .8rem; }

/* Gift card visual */
.bonos-card-col {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}
/* ════════════════════════════════════════
   TARJETA REGALO — diseño digital con los colores del logo
   ════════════════════════════════════════ */
/* ════ TARJETA REGALO — imagen real ════ */
.gift-card {
    position: relative;
    width: clamp(300px, 44vw, 520px);
    border-radius: 20px;
    overflow: hidden;
    animation: cardFloat 5s ease-in-out infinite, cardGlowSoft 6s ease-in-out infinite;
    flex-shrink: 0;
}
.gc-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
}
@keyframes cardGlowSoft {
    0%, 100% { box-shadow: 0 28px 80px rgba(0,0,0,.55), 0 0 40px rgba(78,127,124,.2); }
    50%       { box-shadow: 0 28px 80px rgba(0,0,0,.55), 0 0 65px rgba(201,91,91,.28); }
}
@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(-2.5deg); }
    50%       { transform: translateY(-14px) rotate(-2.5deg); }
}
/* Brillo deslizante */
.gc-shine {
    position: absolute; top: -40%; left: -40%;
    width: 55%; height: 160%;
    background: linear-gradient(105deg,
        rgba(255,255,255,0) 30%, rgba(255,255,255,.12) 50%, rgba(255,255,255,0) 70%
    );
    animation: gcShine 6s ease-in-out 2s infinite;
    pointer-events: none; z-index: 7;
}
@keyframes gcShine {
    0%   { transform: translateX(-20%) skewX(-18deg); opacity: 0; }
    18%  { opacity: 1; }
    100% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
}

/* ════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════ */
.gallery { background: var(--dark); }
.gallery-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: 520px;
    gap: 4px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img { transition: transform .85s ease; object-position: center; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 24px 22px;
    background: linear-gradient(transparent, rgba(0,0,0,.62));
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .35s, transform .35s;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */

/* ── FAQ ── */
.faq { background: var(--bg-pearl); padding: clamp(70px,10vw,120px) 0; position: relative; }
.faq::before {
    content: '';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9b72b8, #7BA89C);
}
.faq-grid { display: grid; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(123,168,156,.14);
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}
.faq-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); transform: translateY(-2px); }
.faq-btn {
    width: 100%; text-align: left;
    padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    font-family: var(--sans); font-size: .88rem; font-weight: 600;
    color: var(--text); background: none; border: none; cursor: pointer;
}
.faq-icon {
    width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
    background: linear-gradient(135deg, #7BA89C, #C1B8CC);
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 300;
    transition: transform .35s ease;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-body {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 24px; font-size: .84rem; color: var(--text-mid); line-height: 1.75;
}
.faq-item.is-open .faq-body { max-height: 200px; padding: 0 24px 20px; }

/* ── Mobile sticky CTA ── */
.mobile-cta-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 849;
    padding: 12px 16px 22px;
    background: linear-gradient(to top, rgba(13,16,23,.92) 60%, transparent);
    pointer-events: none;
}
.mobile-cta-btn {
    display: block; text-align: center; pointer-events: all;
    background: linear-gradient(135deg, #7BA89C 0%, #a892b8 100%);
    color: white; font-family: var(--sans); font-size: .82rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 16px 24px; border-radius: 50px;
    box-shadow: 0 8px 32px rgba(123,168,156,.5);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative; overflow: hidden;
}
.mobile-cta-btn::after {
    content: ''; position: absolute; top:0; left:-150%; width:60%; height:100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.3) 50%, transparent 70%);
    animation: btnShimmer 3s ease-in-out infinite;
}
.mobile-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(123,168,156,.6); }
@media (max-width: 768px) {
    .mobile-cta-bar { display: none; }
}

.contact {
    background: var(--bg);
    padding: clamp(80px, 11vw, 130px) 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: clamp(44px, 7vw, 88px);
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.info-block h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 18px;
}
.info-block p {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.9;
}
.info-block a { color: var(--teal); }
.info-block a:hover { text-decoration: underline; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
    padding: 9px 0;
    font-size: .88rem;
    border-bottom: 1px solid rgba(0,0,0,.05);
    color: var(--text-mid);
}
.hours-table td:first-child { font-weight: 500; color: var(--text); width: 52%; }
.hours-table td:last-child { text-align: right; }
.hours-table tr.closed td { color: var(--text-mute); font-style: italic; }
.hours-table tr:last-child td { border-bottom: none; }

/* ════════════════════════════════════════
   POLICIES
   ════════════════════════════════════════ */
.policies {
    background: var(--bg-soft);
    padding: clamp(80px, 11vw, 130px) 0;
}
.policies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.policy-card {
    background: #fff;
    border-radius: var(--radius);
    padding: clamp(28px, 4.5vw, 48px);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--teal-light);
}
.policy-icon { margin-bottom: 18px; }
.policy-icon svg { width: 36px; height: 36px; stroke: var(--teal); }
.policy-card h4 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 22px;
}
.policy-card ul { display: flex; flex-direction: column; gap: 13px; }
.policy-card li {
    font-size: .87rem;
    color: var(--text-mid);
    line-height: 1.65;
    padding-left: 18px;
    position: relative;
}
.policy-card li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 1.3rem;
    line-height: 1.3;
}
.policy-card strong { color: var(--text); font-weight: 600; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
    background: var(--darker);
    color: rgba(255,255,255,.55);
    padding: clamp(60px, 9vw, 100px) 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
    gap: clamp(36px, 5vw, 68px);
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
    font-family: var(--serif);
    font-size: 1.95rem;
    letter-spacing: .18em;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.footer-by {
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 16px;
}
.footer-desc { font-size: .82rem; line-height: 1.82; max-width: 220px; }
.footer-col h5 {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col li a, .footer-col p, .footer-col a {
    font-size: .82rem;
    color: rgba(255,255,255,.52);
    line-height: 1.85;
    transition: color .25s;
    display: block;
}
.footer-col a:hover, .footer-col li a:hover { color: #fff; }
.footer-reservar {
    display: inline-block;
    margin-top: 18px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-light) !important;
}
.footer-reservar:hover { color: #fff !important; }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: .7rem;
    color: rgba(255,255,255,.22);
    letter-spacing: .07em;
}
.footer-credit {
    margin-top: 8px;
    font-size: .65rem !important;
    color: rgba(255,255,255,.32) !important;
    letter-spacing: .06em;
}
.footer-credit a {
    color: var(--teal-mid);
    text-decoration: none;
    opacity: .7;
    transition: opacity .25s ease;
}
.footer-credit a:hover {
    opacity: 1;
}

/* ════════════════════════════════════════
   BLOG SECTION
   ════════════════════════════════════════ */
.blog-section {
    background: var(--bg-soft);
    padding: clamp(80px, 11vw, 130px) 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.blog-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.blog-card-img-link { display: block; overflow: hidden; aspect-ratio: 16/10; }
.blog-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-tag {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal-mid);
    margin-bottom: 10px;
    display: block;
}
.blog-card-body h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 12px;
}
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--teal-mid); }
.blog-card-body p {
    font-size: .87rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}
.blog-read-more {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-mid);
    transition: color .2s;
    align-self: flex-start;
}
.blog-read-more:hover { color: var(--teal); }

/* ════════════════════════════════════════
   ANTES & DESPUÉS
   ════════════════════════════════════════ */
.ad-section {
    background: #0b0e0e;
    padding: clamp(80px, 11vw, 130px) 0;
}
.ad-section .section-header h2 { color: #fff; }
.ad-section .section-eyebrow { color: var(--sage); opacity: .9; }
.ad-section .section-eyebrow::before,
.ad-section .section-eyebrow::after { background: var(--sage); opacity: .4; }

/* ---- 3-column comparison grid ---- */
.ad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 52px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.ad-grid--single {
    grid-template-columns: 1fr;
    max-width: 680px;
}
.ad-detail-row--single {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.ad-card {
    border-radius: 18px;
    overflow: hidden;
    background: #141818;
    border: 1px solid rgba(255,255,255,.07);
    transition: transform .4s ease, border-color .3s ease;
}
.ad-card:hover {
    transform: translateY(-6px);
    border-color: rgba(122,156,153,.3);
}

/* ---- Side-by-side ANTES | DESPUÉS ---- */
.ad-pair {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    position: relative;
}
.ad-divider {
    background: rgba(255,255,255,.18);
    position: relative;
    z-index: 2;
}
.ad-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #0b0e0e;
    border: 1px solid rgba(255,255,255,.25);
}
.ad-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin: 0;
}
.ad-grid--single .ad-img-wrap {
    aspect-ratio: 4/5;
}
.ad-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform .55s ease;
    display: block;
}
.ad-card:hover .ad-img-wrap img { transform: scale(1.04); }

/* CSS placeholder when image not yet available */
.ad-img-wrap.ad-placeholder {
    background: linear-gradient(160deg, #161d1d 0%, #1c2424 100%);
}
.ad-img-wrap.ad-placeholder::after {
    content: 'Próximamente';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.18);
}

/* ---- ANTES / DESPUÉS badges ---- */
.ad-badge {
    position: absolute;
    bottom: 10px;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 30px;
    z-index: 3;
    pointer-events: none;
}
.ad-badge--antes {
    left: 8px;
    background: rgba(0,0,0,.52);
    color: rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
}
.ad-badge--despues {
    right: 8px;
    background: var(--teal-mid);
    color: #fff;
}

/* ---- Caption below card ---- */
.ad-caption {
    padding: 14px 16px 16px;
    font-family: var(--sans);
    font-size: .63rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
}

/* ---- Detail photo row (3 close-ups) ---- */
.ad-detail-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 14px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.ad-detail-img {
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    background: linear-gradient(160deg, #161d1d 0%, #1c2424 100%);
    transition: transform .4s ease;
}
.ad-detail-img:hover { transform: scale(1.02); }
.ad-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: transform .55s ease;
}
.ad-detail-img:hover img { transform: scale(1.05); }
.ad-detail-img.ad-placeholder {
    position: relative;
}
.ad-detail-img.ad-placeholder::after {
    content: 'Próximamente';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.18);
}

/* ---- CTA below gallery ---- */
.resultados-cta {
    text-align: center;
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.resultados-cta p {
    font-size: .85rem;
    color: rgba(255,255,255,.38);
    letter-spacing: .04em;
}

/* ════════════════════════════════════════
   INSTAGRAM SECTION
   ════════════════════════════════════════ */
.instagram-section {
    background: var(--bg-soft);
    padding: clamp(70px, 10vw, 110px) 0;
    text-align: center;
}
.insta-inner { max-width: 600px; margin: 0 auto; }
.insta-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}
.insta-inner h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.25;
}
.insta-sub {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}
.insta-handle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    color: #fff;
    font-family: var(--sans);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 8px 30px rgba(238,42,123,.35);
}
.insta-handle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(238,42,123,.45);
}

/* ════════════════════════════════════════
   PAGO A PLAZOS — ALMA
   ════════════════════════════════════════ */
.alma-section {
    background: #fff;
    padding: clamp(60px, 9vw, 100px) 0;
    text-align: center;
}
.alma-inner { max-width: 600px; margin: 0 auto; }
.alma-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #4e9e94 0%, #9b72b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}
.alma-icon-wrap svg { width: 26px; height: 26px; }
.alma-inner h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.25;
}
.alma-sub {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}
.alma-sub strong { color: var(--text); font-weight: 600; }

/* Lightbox / modal */
.alma-modal {
    position: fixed; inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility 0s linear .35s;
}
.alma-modal.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity .35s ease, visibility 0s linear 0s;
}
.alma-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(26,30,36,.6);
    backdrop-filter: blur(4px);
}
.alma-modal-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    box-shadow: 0 40px 120px rgba(0,0,0,.35);
    transform: translateY(24px) scale(.97);
    transition: transform .4s cubic-bezier(.19,1,.22,1);
}
.alma-modal.is-open .alma-modal-panel { transform: translateY(0) scale(1); }
.alma-modal-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 88vh;
}
.alma-modal-info {
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
}
.alma-modal-info p {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.75;
}
.alma-modal-info strong { color: var(--text); font-weight: 600; }
.alma-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 2;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s ease, transform .25s ease;
}
.alma-modal-close:hover { background: #fff; transform: rotate(90deg); }
@media (max-width: 720px) {
    .alma-modal-panel { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
    .alma-modal-img { max-height: 46vh; }
}

/* Precio Consultar como link */
.tr-price--ask {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--teal-mid);
    white-space: nowrap;
    transition: color .2s;
    text-decoration: none;
}
.tr-price--ask:hover { color: var(--teal); }

/* ════════════════════════════════════════
   WHATSAPP FAB
   ════════════════════════════════════════ */
.wa-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 800;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,.44);
    transition: transform .3s, box-shadow .3s;
    animation: waPulse 3.5s ease-in-out 5s infinite;
}
.wa-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,211,102,.55);
    animation: none;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.44); }
    50%       { box-shadow: 0 6px 28px rgba(37,211,102,.44), 0 0 0 14px rgba(37,211,102,.1); }
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 960px) {
    .nav-links { display: none; }
    .menu-btn  { display: flex; }

    .about-layout { grid-template-columns: 1fr; }
    .about-photo-side { order: -1; }
    .about-features { align-items: center; }

    /* Antes & Después — tablet: 1 columna centrada */
    .ad-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .ad-detail-row { grid-template-columns: repeat(3, 1fr); }

    /* Blog → carousel en tablet/móvil */
    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 20px;
        margin-top: 40px;
        padding: 8px 0 20px;
        cursor: grab;
    }
    .blog-grid::-webkit-scrollbar { display: none; }
    .blog-grid:active { cursor: grabbing; }
    .blog-card {
        flex: 0 0 auto;
        width: clamp(240px, 44vw, 340px);
        scroll-snap-align: start;
    }

    .bonos-grid { grid-template-columns: 1fr; gap: 52px; }
    .bonos-card-col { order: -1; }

    .contact-grid { grid-template-columns: 1fr; }
    .policies-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 240px;
    }
    .gallery-item--large { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .stats-grid { flex-direction: column; gap: 36px; }
    .stat-sep { width: 48px; height: 1px; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 280px 220px 220px;
    }
    .gallery-item--large { grid-column: 1; }

    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .blog-card { width: min(300px, 80vw); }

    /* Antes & Después — móvil: card full width, detalle 3 col */
    .ad-grid { max-width: 100%; }
    .ad-detail-row { gap: 8px; }
    .ad-detail-img { border-radius: 10px; }

    /* Acordeón: en móvil ocultar botón RESERVAR individual (hay botón global al final) */
    .tr-btn { display: none; }
    .tr-row { grid-template-columns: 1fr auto; gap: 12px; }

    .wa-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
