/* ============================================================
   CLINIC — Estética & Saúde · Sombrio/SC
   Design system & styles
   Palette derived from the brand logo: dusty rose, champagne
   gold and warm cream, with an olive-green accent for the
   "Medicina Canábica" content.
   ============================================================ */

:root{
  /* Brand */
  --rose:#C8A19B;
  --rose-2:#D9B7B0;
  --rose-soft:#EAD3CC;
  --blush:#F7EBE6;
  --cream:#FBF6F1;
  --cream-2:#F4EAE1;
  --gold:#C4A05A;
  --gold-deep:#A07A34;
  --gold-light:#E7CD93;
  --gold-grad:linear-gradient(120deg,#E7CD93 0%,#C4A05A 42%,#9C7430 100%);
  --mauve:#5A413C;
  --mauve-deep:#33241F;
  --ink:#2E2622;
  --muted:#8B7A73;
  --line:rgba(90,65,60,.14);
  --white:#ffffff;

  /* CBD accent */
  --olive:#7C854E;
  --olive-2:#5E6738;
  --olive-deep:#39411F;
  --olive-bg:#F1F1E5;
  --olive-soft:#E4E6D2;

  /* Effects */
  --shadow-sm:0 4px 18px rgba(70,45,40,.07);
  --shadow:0 18px 50px rgba(70,45,40,.13);
  --shadow-lg:0 34px 80px rgba(70,45,40,.22);
  --radius:18px;
  --radius-lg:30px;
  --maxw:1200px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --header-h:84px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Jost',system-ui,-apple-system,'Segoe UI',sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-weight:400;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px}

/* ---------- Typography helpers ---------- */
.serif{font-family:'Cormorant Garamond',Georgia,serif}
.cinzel{font-family:'Cinzel',serif}

.eyebrow{
  font-family:'Cinzel',serif;
  font-size:.72rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold-deep);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:.7em;
}
.eyebrow::before{
  content:"";width:30px;height:1px;background:var(--gold);display:inline-block;opacity:.8;
}
.eyebrow.center::after{
  content:"";width:30px;height:1px;background:var(--gold);display:inline-block;opacity:.8;
}

.section-title{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
  font-size:clamp(2rem,4.4vw,3.3rem);
  line-height:1.08;
  letter-spacing:.5px;
  color:var(--mauve-deep);
  margin:.5rem 0 1rem;
}
.section-title em{font-style:italic;color:var(--gold-deep)}
.section-lead{
  font-size:1.06rem;color:var(--muted);max-width:60ch;
}

.gold-text{
  background:var(--gold-grad);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:var(--gold-deep);
}

/* ---------- Layout ---------- */
.container{width:min(var(--maxw),92%);margin-inline:auto}
.section{padding:clamp(64px,9vw,118px) 0}
.section--alt{background:linear-gradient(180deg,var(--cream) 0%,var(--blush) 100%)}
.section--rose{background:var(--blush)}
.section-head{margin-bottom:54px;max-width:720px}
.section-head.center{margin-inline:auto;text-align:center}
.section-head.center .section-lead{margin-inline:auto}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6em;
  padding:.95em 1.8em;border-radius:100px;font-weight:500;font-size:.96rem;
  letter-spacing:.02em;transition:transform .3s var(--ease),box-shadow .3s var(--ease),background .3s;
  white-space:nowrap;line-height:1;
}
.btn svg{width:1.15em;height:1.15em;flex:none}
.btn--wa{background:#1FA855;color:#fff;box-shadow:0 12px 26px rgba(31,168,85,.30)}
.btn--wa:hover{transform:translateY(-3px);box-shadow:0 18px 34px rgba(31,168,85,.42)}
.btn--gold{background:var(--gold-grad);color:#3a2c12;box-shadow:0 12px 26px rgba(160,122,52,.30)}
.btn--gold:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(160,122,52,.42)}
.btn--dark{background:var(--mauve-deep);color:var(--cream)}
.btn--dark:hover{transform:translateY(-3px);background:#241712}
.btn--ghost{background:transparent;color:var(--mauve);border:1.5px solid rgba(90,65,60,.28)}
.btn--ghost:hover{border-color:var(--gold);color:var(--gold-deep);transform:translateY(-3px)}
.btn--lg{padding:1.15em 2.3em;font-size:1.02rem}
.btn--block{width:100%}

/* ---------- Top utility bar ---------- */
.topbar{
  background:var(--mauve-deep);color:#e9ddd5;font-size:.82rem;letter-spacing:.02em;
}
.topbar .container{display:flex;justify-content:space-between;align-items:center;gap:18px;min-height:42px;flex-wrap:wrap}
.topbar a{color:#e9ddd5;transition:color .25s}
.topbar a:hover{color:var(--gold-light)}
.topbar__group{display:flex;align-items:center;gap:22px}
.topbar__item{display:inline-flex;align-items:center;gap:.5em;color:#d9c9bf}
.topbar__item svg{width:15px;height:15px;color:var(--gold)}
.topbar__socials{display:flex;gap:14px}

/* ---------- Header ---------- */
.header{
  position:sticky;top:0;z-index:60;
  background:rgba(251,246,241,.82);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .35s,background .35s,padding .35s;
}
.header.scrolled{box-shadow:0 10px 34px rgba(70,45,40,.10);background:rgba(251,246,241,.94)}
.header__inner{display:flex;align-items:center;justify-content:space-between;gap:20px;height:var(--header-h);transition:height .35s}
.header.scrolled .header__inner{height:70px}

.brand{display:flex;align-items:center;gap:13px}
.brand__badge{width:50px;height:50px;flex:none;transition:transform .4s var(--ease)}
.brand:hover .brand__badge{transform:rotate(-6deg) scale(1.05)}
.brand__txt{display:flex;flex-direction:column;line-height:1}
.brand__name{
  font-family:'Cinzel',serif;font-weight:700;font-size:1.32rem;letter-spacing:.22em;
  color:var(--mauve-deep);
}
.brand__tag{
  font-size:.6rem;letter-spacing:.34em;text-transform:uppercase;color:var(--gold-deep);
  margin-top:5px;font-weight:500;
}

.nav__list{display:flex;align-items:center;gap:30px}
.nav__link{
  position:relative;font-size:.93rem;font-weight:500;color:var(--ink);padding:.3em 0;letter-spacing:.01em;
  transition:color .25s;
}
.nav__link::after{
  content:"";position:absolute;left:0;bottom:-2px;width:0;height:1.5px;
  background:var(--gold-grad);transition:width .3s var(--ease);
}
.nav__link:hover,.nav__link.active{color:var(--gold-deep)}
.nav__link:hover::after,.nav__link.active::after{width:100%}
.nav__link--cbd{color:var(--olive-2)}
.nav__link--cbd::after{background:var(--olive)}

.header__actions{display:flex;align-items:center;gap:14px}
.menu-toggle{display:none;width:46px;height:46px;border-radius:12px;align-items:center;justify-content:center}
.menu-toggle span{display:block;width:24px;height:2px;background:var(--mauve-deep);position:relative;transition:.3s}
.menu-toggle span::before,.menu-toggle span::after{content:"";position:absolute;left:0;width:24px;height:2px;background:var(--mauve-deep);transition:.3s}
.menu-toggle span::before{top:-7px}.menu-toggle span::after{top:7px}
body.menu-open .menu-toggle span{background:transparent}
body.menu-open .menu-toggle span::before{top:0;transform:rotate(45deg)}
body.menu-open .menu-toggle span::after{top:0;transform:rotate(-45deg)}

/* Mobile nav drawer */
.mobile-nav{
  position:fixed;inset:0 0 0 auto;width:min(360px,86vw);background:var(--cream);
  z-index:70;transform:translateX(100%);transition:transform .45s var(--ease);
  padding:96px 34px 40px;box-shadow:var(--shadow-lg);display:flex;flex-direction:column;gap:6px;
  overflow-y:auto;
}
body.menu-open .mobile-nav{transform:translateX(0)}
.mobile-nav a{padding:14px 4px;font-size:1.08rem;border-bottom:1px solid var(--line);font-weight:500;color:var(--mauve-deep);
  display:flex;justify-content:space-between;align-items:center}
.mobile-nav a:hover{color:var(--gold-deep)}
.mobile-nav .btn{margin-top:22px}
.nav-overlay{position:fixed;inset:0;background:rgba(40,28,24,.5);backdrop-filter:blur(2px);z-index:65;opacity:0;visibility:hidden;transition:.4s}
body.menu-open .nav-overlay{opacity:1;visibility:visible}

/* ============================================================
   HERO
   ============================================================ */
.hero{position:relative;overflow:hidden;background:
   radial-gradient(120% 90% at 85% 8%,var(--blush) 0%,transparent 55%),
   linear-gradient(180deg,var(--cream) 0%,var(--cream-2) 100%)}
.hero__inner{
  display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;
  padding:clamp(48px,7vw,96px) 0 clamp(60px,8vw,110px);
}
.hero__content{max-width:600px;position:relative;z-index:2}
.hero__title{
  font-family:'Cormorant Garamond',serif;font-weight:600;
  font-size:clamp(2.7rem,6vw,4.6rem);line-height:1.02;letter-spacing:.5px;
  color:var(--mauve-deep);margin:1.1rem 0;
}
.hero__title em{font-style:italic}
.hero__text{font-size:1.13rem;color:#6c5b54;max-width:48ch;margin-bottom:2rem}
.hero__cta{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:2.6rem}
.hero__trust{display:flex;gap:30px;flex-wrap:wrap;border-top:1px solid var(--line);padding-top:24px}
.hero__trust .t{display:flex;flex-direction:column;gap:2px}
.hero__trust .t b{font-family:'Cormorant Garamond',serif;font-size:1.85rem;font-weight:700;color:var(--gold-deep);line-height:1}
.hero__trust .t span{font-size:.78rem;color:var(--muted);letter-spacing:.04em;text-transform:uppercase}

.hero__media{position:relative;justify-self:center}
.hero__frame{
  position:relative;width:min(440px,90%);aspect-ratio:4/5;border-radius:240px 240px var(--radius-lg) var(--radius-lg);
  overflow:hidden;box-shadow:var(--shadow-lg);z-index:2;
  border:1px solid rgba(196,160,90,.4);
}
.hero__frame img,.hero__frame video{width:100%;height:100%;object-fit:cover;display:block}
.hero__frame video{background:var(--cream-2)}
.hero__media::before{
  content:"";position:absolute;inset:-7% -10% -7% 14%;border:1.5px solid rgba(196,160,90,.45);
  border-radius:240px 240px var(--radius-lg) var(--radius-lg);z-index:1;
}
.hero__media::after{
  content:"";position:absolute;width:230px;height:230px;right:-40px;top:-44px;
  background:radial-gradient(circle,rgba(200,161,155,.5),transparent 70%);filter:blur(8px);z-index:0;
}
.hero__float{
  position:absolute;left:-26px;bottom:46px;z-index:3;background:rgba(251,246,241,.92);
  backdrop-filter:blur(8px);border:1px solid var(--line);border-radius:16px;padding:14px 18px;
  box-shadow:var(--shadow);display:flex;align-items:center;gap:12px;max-width:230px;
}
.hero__float .ring{width:42px;height:42px;border-radius:50%;background:var(--gold-grad);display:grid;place-items:center;flex:none}
.hero__float .ring svg{width:22px;height:22px;color:#fff}
.hero__float b{display:block;font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--mauve-deep);line-height:1}
.hero__float span{font-size:.76rem;color:var(--muted)}
.hero__badge-wm{position:absolute;right:-22px;bottom:-30px;width:120px;opacity:.9;z-index:3;filter:drop-shadow(0 8px 18px rgba(70,45,40,.2))}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features{background:var(--mauve-deep);color:var(--cream)}
.features__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px;padding:54px 0}
.feature{display:flex;gap:16px;align-items:flex-start}
.feature__icon{width:50px;height:50px;flex:none;border-radius:14px;display:grid;place-items:center;
  background:rgba(196,160,90,.16);border:1px solid rgba(196,160,90,.34)}
.feature__icon svg{width:26px;height:26px;color:var(--gold-light)}
.feature h3{font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:600;margin-bottom:3px;letter-spacing:.3px}
.feature p{font-size:.86rem;color:#cebcb1;line-height:1.5}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(40px,6vw,80px);align-items:center}
.about__media{position:relative}
.about__media img{border-radius:var(--radius-lg);box-shadow:var(--shadow);width:100%;aspect-ratio:4/5;object-fit:cover}
.about__media .accent{position:absolute;inset:auto auto -22px -22px;width:62%;aspect-ratio:1/1;
  border:1.5px solid var(--gold);border-radius:var(--radius-lg);z-index:-1}
.about__badge{position:absolute;top:-26px;right:-22px;width:118px;height:118px;border-radius:50%;
  background:var(--mauve-deep);display:grid;place-items:center;box-shadow:var(--shadow);padding:14px}
.about__badge img{width:100%;border-radius:0;box-shadow:none;aspect-ratio:auto}
.about__content p{margin-bottom:1.2rem;color:#5f4f49}
.about__content p.lead{font-size:1.16rem;color:var(--ink)}
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:34px;border-top:1px solid var(--line);padding-top:30px}
.stat__num{font-family:'Cormorant Garamond',serif;font-weight:700;font-size:2.4rem;line-height:1;color:var(--gold-deep)}
.stat__label{font-size:.78rem;color:var(--muted);letter-spacing:.05em;text-transform:uppercase;margin-top:6px}

/* ============================================================
   SPECIALISTS / TEAM
   ============================================================ */
.team__grid{display:grid;grid-template-columns:1fr 1fr;gap:34px}
.specialist{
  background:var(--white);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);
  display:grid;grid-template-columns:.85fr 1.15fr;transition:transform .4s var(--ease),box-shadow .4s;
  border:1px solid var(--line);
}
.specialist:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.specialist__img{position:relative;overflow:hidden}
.specialist__img img{width:100%;height:100%;object-fit:cover;min-height:300px;transition:transform .6s var(--ease)}
.specialist:hover .specialist__img img{transform:scale(1.05)}
.specialist__info{padding:30px 30px 28px;display:flex;flex-direction:column}
.specialist__role{font-family:'Cinzel',serif;font-size:.68rem;letter-spacing:.2em;color:var(--gold-deep);text-transform:uppercase;font-weight:600}
.specialist__name{font-family:'Cormorant Garamond',serif;font-size:1.85rem;font-weight:600;color:var(--mauve-deep);margin:4px 0 2px;line-height:1.05}
.specialist__cro{font-size:.8rem;color:var(--muted);margin-bottom:12px}
.specialist__bio{font-size:.92rem;color:#5f4f49;margin-bottom:16px}
.specialist__tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px}
.tag{font-size:.74rem;padding:.4em .9em;border-radius:100px;background:var(--blush);color:var(--mauve);border:1px solid var(--line)}
.specialist__social{margin-top:auto;display:inline-flex;align-items:center;gap:8px;color:var(--gold-deep);font-size:.86rem;font-weight:500}
.specialist__social svg{width:18px;height:18px}
.specialist__social:hover{color:var(--mauve-deep)}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.service{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:30px 26px;
  transition:transform .35s var(--ease),box-shadow .35s,border-color .35s;position:relative;overflow:hidden;
}
.service::after{content:"";position:absolute;left:0;top:0;height:3px;width:0;background:var(--gold-grad);transition:width .4s var(--ease)}
.service:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:transparent}
.service:hover::after{width:100%}
.service__icon{width:54px;height:54px;border-radius:14px;background:var(--blush);display:grid;place-items:center;margin-bottom:18px;transition:background .35s}
.service__icon svg{width:28px;height:28px;color:var(--gold-deep)}
.service:hover .service__icon{background:var(--cream-2)}
.service__title{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:600;color:var(--mauve-deep);margin-bottom:8px}
.service__desc{font-size:.9rem;color:#6c5b54;line-height:1.55}
.service--feature{background:linear-gradient(150deg,var(--olive-deep),#2c331a);color:var(--olive-soft);border-color:transparent}
.service--feature .service__icon{background:rgba(231,205,147,.14)}
.service--feature .service__icon svg{color:var(--gold-light)}
.service--feature .service__title{color:#fff}
.service--feature .service__desc{color:#d6dabf}
.service--feature::after{background:var(--gold-grad)}
.service__more{display:inline-flex;align-items:center;gap:7px;margin-top:16px;font-size:.84rem;font-weight:600;color:var(--gold-light);letter-spacing:.02em}
.service__more svg{width:16px;height:16px;transition:transform .3s}
.service--feature:hover .service__more svg{transform:translateX(5px)}

/* ============================================================
   CBD BAND (home teaser)
   ============================================================ */
.cbd{background:
   radial-gradient(90% 120% at 12% 20%,#444d29 0%,transparent 60%),
   linear-gradient(135deg,var(--olive-deep) 0%,#2b3219 100%);
  color:#eef0df;position:relative;overflow:hidden}
.cbd__leaf{position:absolute;color:rgba(231,205,147,.07);width:420px;height:420px;right:-80px;bottom:-90px;transform:rotate(18deg)}
.cbd__leaf--2{left:-120px;top:-100px;width:340px;height:340px;transform:rotate(-30deg)}
.cbd__inner{display:grid;grid-template-columns:1.1fr .9fr;gap:60px;align-items:center;position:relative;z-index:2}
.cbd .eyebrow{color:var(--gold-light)}
.cbd .eyebrow::before{background:var(--gold-light)}
.cbd__title{font-family:'Cormorant Garamond',serif;font-size:clamp(2.1rem,4.6vw,3.4rem);font-weight:600;line-height:1.07;color:#fff;margin:.5rem 0 1rem}
.cbd__title em{font-style:italic;color:var(--gold-light)}
.cbd__text{color:#d4d8bf;max-width:52ch;margin-bottom:1.6rem}
.cbd__benefits{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:2rem}
.cbd__chip{display:inline-flex;align-items:center;gap:8px;background:rgba(231,205,147,.1);border:1px solid rgba(231,205,147,.28);
  border-radius:100px;padding:.55em 1.1em;font-size:.86rem;color:#eef0df}
.cbd__chip svg{width:16px;height:16px;color:var(--gold-light)}
.cbd__media{position:relative;justify-self:center}
.cbd__media img{width:min(420px,92%);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);border:1px solid rgba(231,205,147,.4)}
.cbd__media .ring{position:absolute;inset:-16px -16px auto auto;width:90px;height:90px;border:1.5px solid rgba(231,205,147,.5);border-radius:50%}

/* ============================================================
   GALLERY (results + ambiente)
   ============================================================ */
.gallery{display:grid;gap:18px}
.results .gallery{grid-template-columns:repeat(4,1fr)}
.ambiente .gallery{grid-template-columns:repeat(4,1fr)}
.gallery__item{
  position:relative;overflow:hidden;border-radius:var(--radius);cursor:pointer;box-shadow:var(--shadow-sm);
  aspect-ratio:3/4;background:var(--cream-2);
}
.gallery__item img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease)}
.gallery__item:hover img{transform:scale(1.07)}
.gallery__item::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(51,36,31,.55));opacity:0;transition:opacity .4s}
.gallery__item:hover::after{opacity:1}
.gallery__item .zoom{position:absolute;right:14px;bottom:14px;width:40px;height:40px;border-radius:50%;
  background:rgba(251,246,241,.9);display:grid;place-items:center;opacity:0;transform:translateY(8px);transition:.4s;z-index:2}
.gallery__item .zoom svg{width:18px;height:18px;color:var(--mauve-deep)}
.gallery__item:hover .zoom{opacity:1;transform:translateY(0)}
.gallery__cap{position:absolute;left:16px;bottom:16px;z-index:2;color:#fff;font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;opacity:0;transform:translateY(8px);transition:.4s}
.gallery__item:hover .gallery__cap{opacity:1;transform:translateY(0)}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{background:linear-gradient(180deg,var(--blush),var(--cream))}
.testi__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testi{background:var(--white);border:1px solid var(--line);border-radius:var(--radius-lg);padding:34px 30px;position:relative;box-shadow:var(--shadow-sm)}
.testi__quote-mark{font-family:'Cormorant Garamond',serif;font-size:4.5rem;line-height:.6;color:var(--rose-soft);position:absolute;top:24px;right:26px}
.testi__stars{display:flex;gap:3px;margin-bottom:14px;color:var(--gold)}
.testi__stars svg{width:18px;height:18px}
.testi__quote{font-family:'Cormorant Garamond',serif;font-size:1.22rem;line-height:1.45;color:var(--ink);font-style:italic;margin-bottom:22px}
.testi__author{display:flex;align-items:center;gap:12px}
.testi__avatar{width:46px;height:46px;border-radius:50%;background:var(--gold-grad);display:grid;place-items:center;
  font-family:'Cormorant Garamond',serif;font-size:1.2rem;color:#fff;font-weight:700;flex:none}
.testi__author b{display:block;color:var(--mauve-deep);font-weight:600;font-size:.96rem}
.testi__author span{font-size:.8rem;color:var(--muted)}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid{display:grid;grid-template-columns:1fr 1.1fr;gap:50px;align-items:stretch}
.contact__info{display:flex;flex-direction:column}
.info-item{display:flex;gap:16px;padding:20px 0;border-bottom:1px solid var(--line)}
.info-item:first-of-type{padding-top:0}
.info-item__icon{width:48px;height:48px;flex:none;border-radius:13px;background:var(--blush);display:grid;place-items:center}
.info-item__icon svg{width:23px;height:23px;color:var(--gold-deep)}
.info-item h4{font-family:'Cormorant Garamond',serif;font-size:1.2rem;color:var(--mauve-deep);font-weight:600;margin-bottom:2px}
.info-item p,.info-item a{font-size:.94rem;color:#6c5b54;line-height:1.5}
.info-item a:hover{color:var(--gold-deep)}
.contact__cta{margin-top:26px;display:flex;flex-wrap:wrap;gap:12px}
.contact__map{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow);min-height:430px;border:1px solid var(--line)}
.contact__map iframe{position:relative;z-index:1;width:100%;height:100%;min-height:430px;border:0;display:block;filter:grayscale(.15) contrast(1.02)}
.map-placeholder{position:absolute;inset:0;z-index:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;text-align:center;padding:20px;
  background:radial-gradient(circle at 30% 20%,var(--blush),var(--cream-2));color:var(--mauve)}
.map-placeholder svg{width:54px;height:54px;color:var(--gold-deep)}
.map-placeholder span{font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:600;color:var(--mauve-deep)}
.map-placeholder small{font-size:.85rem;color:var(--muted)}
.map-link{position:absolute;z-index:2;left:50%;bottom:18px;transform:translateX(-50%);display:inline-flex;align-items:center;gap:8px;
  background:var(--mauve-deep);color:var(--cream);padding:.72em 1.4em;border-radius:100px;font-size:.86rem;font-weight:500;
  box-shadow:var(--shadow);white-space:nowrap;transition:background .3s,transform .3s}
.map-link svg{width:16px;height:16px}
.map-link:hover{background:var(--gold-deep);transform:translateX(-50%) translateY(-2px)}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{background:
   radial-gradient(80% 140% at 80% 0%,rgba(200,161,155,.5) 0%,transparent 55%),
   linear-gradient(135deg,var(--mauve) 0%,var(--mauve-deep) 100%);
  color:var(--cream);text-align:center;position:relative;overflow:hidden}
.cta-band__wm{position:absolute;right:-30px;top:50%;transform:translateY(-50%);width:280px;opacity:.08}
.cta-band h2{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,4.5vw,3.2rem);font-weight:600;color:#fff;margin-bottom:14px;line-height:1.1}
.cta-band p{color:#e3d4cb;max-width:54ch;margin:0 auto 30px;font-size:1.06rem}
.cta-band .btn-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;position:relative;z-index:2}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:#241712;color:#c6b4a9;padding:74px 0 0}
.footer__grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:50px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer__brand{display:flex;flex-direction:column;gap:16px;max-width:330px}
.footer__brand .brand__name{color:#fff}
.footer__brand .brand__tag{color:var(--gold-light)}
.footer__brand p{font-size:.9rem;color:#a8968b;line-height:1.6}
.footer__badge{display:flex;align-items:center;gap:13px}
.footer__badge img{width:64px}
.footer h4{font-family:'Cinzel',serif;font-size:.78rem;letter-spacing:.18em;color:var(--gold-light);text-transform:uppercase;margin-bottom:20px;font-weight:600}
.footer__links{display:flex;flex-direction:column;gap:11px}
.footer__links a{font-size:.92rem;color:#c6b4a9;transition:color .25s,padding-left .25s}
.footer__links a:hover{color:#fff;padding-left:5px}
.footer__contact p{font-size:.9rem;margin-bottom:12px;display:flex;gap:10px;color:#bca99e}
.footer__contact svg{width:17px;height:17px;color:var(--gold);flex:none;margin-top:3px}
.footer__socials{display:flex;gap:12px;margin-top:6px}
.footer__socials a{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.16);display:grid;place-items:center;transition:.3s}
.footer__socials a:hover{background:var(--gold-grad);border-color:transparent;transform:translateY(-3px)}
.footer__socials svg{width:18px;height:18px;color:#e6d8ce}
.footer__socials a:hover svg{color:#fff}
.footer__bottom{padding:24px 0;display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:.8rem;color:#9b897e}
.footer__bottom a{color:var(--gold-light)}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.fab-wa{position:fixed;right:24px;bottom:24px;z-index:55;width:60px;height:60px;border-radius:50%;
  background:#1FA855;display:grid;place-items:center;box-shadow:0 12px 30px rgba(31,168,85,.45);
  transition:transform .3s}
.fab-wa svg{width:32px;height:32px;color:#fff}
.fab-wa:hover{transform:scale(1.08)}
.fab-wa::before{content:"";position:absolute;inset:0;border-radius:50%;background:#1FA855;z-index:-1;animation:pulse 2.4s infinite}
@keyframes pulse{0%{transform:scale(1);opacity:.6}70%{transform:scale(1.7);opacity:0}100%{opacity:0}}
.to-top{position:fixed;left:24px;bottom:24px;z-index:55;width:46px;height:46px;border-radius:50%;
  background:var(--mauve-deep);color:var(--cream);display:grid;place-items:center;opacity:0;visibility:hidden;
  transform:translateY(14px);transition:.4s;box-shadow:var(--shadow)}
.to-top svg{width:20px;height:20px}
.to-top.show{opacity:1;visibility:visible;transform:translateY(0)}
.to-top:hover{background:var(--gold-deep)}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox{position:fixed;inset:0;z-index:90;background:rgba(28,18,15,.92);backdrop-filter:blur(6px);
  display:grid;place-items:center;opacity:0;visibility:hidden;transition:.35s;padding:30px}
.lightbox.open{opacity:1;visibility:visible}
.lightbox img{max-width:92vw;max-height:88vh;border-radius:14px;box-shadow:var(--shadow-lg);transform:scale(.95);transition:transform .35s}
.lightbox.open img{transform:scale(1)}
.lightbox__close{position:absolute;top:24px;right:28px;width:48px;height:48px;border-radius:50%;
  background:rgba(255,255,255,.12);color:#fff;display:grid;place-items:center}
.lightbox__close svg{width:24px;height:24px}
.lightbox__close:hover{background:rgba(255,255,255,.22)}
.lightbox__nav{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;border-radius:50%;
  background:rgba(255,255,255,.12);color:#fff;display:grid;place-items:center}
.lightbox__nav:hover{background:rgba(255,255,255,.22)}
.lightbox__nav svg{width:26px;height:26px}
.lightbox__nav.prev{left:24px}.lightbox__nav.next{right:24px}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal]{opacity:0;transform:translateY(34px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
[data-reveal].in{opacity:1;transform:none}
[data-reveal][data-delay="1"]{transition-delay:.08s}
[data-reveal][data-delay="2"]{transition-delay:.16s}
[data-reveal][data-delay="3"]{transition-delay:.24s}
[data-reveal][data-delay="4"]{transition-delay:.32s}
[data-reveal][data-delay="5"]{transition-delay:.40s}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important}
  [data-reveal]{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .hero__inner{grid-template-columns:1fr;gap:48px}
  .hero__media{order:-1}
  .hero__content{max-width:none}
  .features__grid{grid-template-columns:repeat(2,1fr);gap:26px}
  .about__grid{grid-template-columns:1fr;gap:56px}
  .about__media{max-width:460px}
  .services__grid{grid-template-columns:repeat(2,1fr)}
  .cbd__inner{grid-template-columns:1fr;gap:44px}
  .cbd__media{order:-1}
  .contact__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr 1fr;gap:36px}
}
@media (max-width:780px){
  .nav,.header__actions .btn--header{display:none}
  .menu-toggle{display:flex}
  .topbar{display:none}
  .team__grid{grid-template-columns:1fr}
  .testi__grid{grid-template-columns:1fr}
  .results .gallery,.ambiente .gallery{grid-template-columns:repeat(2,1fr)}
  .hero__trust{gap:22px}
  .stats{grid-template-columns:repeat(2,1fr);gap:24px 18px}
  .specialist{grid-template-columns:1fr}
  .specialist__img img{min-height:340px}
}
@media (max-width:520px){
  :root{--header-h:72px}
  .services__grid{grid-template-columns:1fr}
  .features__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .hero__float{left:0}
  .brand__tag{display:none}
  .btn{padding:.9em 1.5em}
  .cta-band .btn-row .btn{width:100%}
}
