/* ==========================================================================
   Dr. Rafael Pinheiro — Cirurgião Plástico
   Remodelação corporal — landing page institucional
   Identidade: joia em lapidação + traços que se conectam (abraço)
   ========================================================================== */

:root{
  --mauve:        #1a1a1a;
  --mauve-light:  #333333;
  --mauve-dark:   #000000;
  --ink:          #111111;
  --ink-soft:     #595959;
  --cream:        #ffffff;
  --cream-2:      #f0f0f0;
  --white:        #ffffff;
  --gold:         #b3925f;
  --gold-light:   #d8c19a;
  --blue:         #000000;
  --navy:         #000000;
  --sky:          var(--gold-light);
  --terracotta:   #808080;
  --blush:        var(--gold-light);

  --font-display: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow-soft: 0 20px 50px -25px rgba(0,0,0,.35);
  --shadow-card: 0 12px 30px -18px rgba(0,0,0,.28);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  line-height:1.65;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
br.mobile-break{ display:none; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:400;
  letter-spacing:.01em;
  color:var(--ink);
  margin:0 0 .5em;
}
p{ margin:0 0 1em; }
button{ font:inherit; cursor:pointer; }
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

/* ---------- Placeholder visual blocks (sem fotos ainda) ---------- */
.ph{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.14), rgba(179,146,95,.10)),
    var(--cream-2);
  background-size:cover, cover;
  border:1px dashed rgba(0,0,0,.45);
  border-radius:var(--radius);
  color:var(--mauve-dark);
  min-height:260px;
}
.ph-label{
  position:relative;
  z-index:1;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:0 24px;
}
.ph-label small{
  display:block;
  margin-top:6px;
  font-family:var(--font-body);
  font-weight:400;
  text-transform:none;
  letter-spacing:0;
  font-size:.78rem;
  opacity:.75;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.92rem;
  letter-spacing:.02em;
  border:1.5px solid transparent;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
.btn-primary{
  background:rgb(136,103,97);
  color:var(--white);
  box-shadow:0 14px 28px -14px rgba(136,103,97,.65);
}
.btn-primary:hover{
  background:rgb(165,132,125);
  transform:translateY(-2px);
  box-shadow:0 18px 32px -14px rgba(136,103,97,.75);
}
.btn-outline{
  background:transparent;
  border-color:currentColor;
  color:var(--mauve);
}
.btn-outline:hover{
  background:var(--mauve);
  color:var(--white);
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  border-color:rgba(255,255,255,.55);
  color:var(--white);
}
.btn-outline-light:hover{
  background:var(--white);
  color:var(--mauve-dark);
  transform:translateY(-2px);
}
.btn:active{ transform:scale(.96); }
.btn-block{ width:100%; justify-content:center; }
.btn:disabled{ opacity:.4; cursor:not-allowed; transform:none !important; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in-view{ opacity:1; transform:translateY(0); }
.reveal-delay-1.in-view{ transition-delay:.1s; }
.reveal-delay-2.in-view{ transition-delay:.2s; }
.reveal-delay-3.in-view{ transition-delay:.3s; }
.reveal-delay-4.in-view{ transition-delay:.4s; }
.reveal-delay-5.in-view{ transition-delay:.5s; }
.reveal-delay-6.in-view{ transition-delay:.6s; }

/* ---------- Section heads ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.76rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
}
.eyebrow:empty::before{ display:none; }
.eyebrow::before{
  content:'';
  width:26px; height:1px;
  background:var(--gold);
}
.section-head{ max-width:640px; margin-bottom:56px; }
#benefitsHead{ will-change:transform; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem, 3vw, 2.5rem); margin-top:14px; }
.section-head p{ font-size:1.02rem; color:var(--ink-soft); margin-top:16px; }
section{ padding:96px 0; }
.bg-cream-2{ background:var(--cream-2); }

/* ============================= HEADER ============================= */
.site-header{
  position:fixed; top:0; left:0; right:0;
  z-index:500;
  padding:20px 0;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.site-header.scrolled{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  padding:12px 0;
  box-shadow:0 6px 24px -14px rgba(0,0,0,.25);
  border-color:rgba(0,0,0,.12);
}
.brand{ display:flex; align-items:center; position:relative; }
.brand img{ height:52px; width:auto; transition:opacity .4s ease; }
.brand .logo-dark{ position:absolute; left:0; top:50%; transform:translateY(-50%); opacity:0; }
.site-header.scrolled .logo-dark{ opacity:1; }
.site-header.scrolled .logo-light{ opacity:0; }

.main-nav{ display:flex; align-items:center; gap:34px; }
.main-nav ul{ display:flex; align-items:center; gap:30px; }
.main-nav a:not(.btn){
  font-family:var(--font-display);
  font-weight:700;
  font-size:.86rem;
  letter-spacing:.02em;
  color:var(--white);
  position:relative;
  padding:4px 0;
  transition:color .3s ease;
}
.site-header.scrolled .main-nav a:not(.btn){ color:var(--ink); }
.main-nav a:not(.btn)::after{
  content:'';
  position:absolute; left:0; right:100%; bottom:0;
  height:2px; background:var(--gold);
  transition:right .3s ease;
}
.main-nav a:not(.btn):hover::after{ right:0; }
.header-icons{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  width:38px; height:38px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.45);
  color:var(--white);
  transition:background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.site-header.scrolled .icon-btn{ border-color:rgba(0,0,0,.35); color:var(--mauve); }
.icon-btn:hover{ background:var(--gold); border-color:var(--gold); color:var(--white); transform:translateY(-2px); }
.icon-btn svg{ width:17px; height:17px; }

.lang-btn-header{
  width:auto; padding:0 13px;
  border-radius:999px;
  font-family:var(--font-display); font-weight:700; font-size:.76rem; letter-spacing:.03em;
  background:rgba(255,255,255,.92); border-color:rgba(255,255,255,.92);
  cursor:pointer;
}
.lang-btn-header .lang-label{ color:#000; }
.lang-btn-header:hover .lang-label{ color:#000; }
.lang-btn-header:hover{ background:var(--gold-light); border-color:var(--gold-light); }

.nav-toggle{
  display:none;
  width:40px; height:40px;
  background:none; border:none;
  flex-direction:column; align-items:flex-end; justify-content:center; gap:5px;
}
.nav-toggle span{
  display:block; width:26px; height:2px; background:var(--white);
  transition:all .3s ease;
}
.site-header.scrolled .nav-toggle span{ background:var(--ink); }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); width:26px; }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); width:26px; }

.mobile-menu{
  position:fixed; inset:0 0 auto 0; top:0;
  background:#000000;
  z-index:490;
  padding:120px 32px 48px;
  transform:translateY(-100%);
  transition:transform .45s ease;
  height:100vh;
  overflow-y:auto;
}
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu ul{ display:flex; flex-direction:column; gap:6px; }
.mobile-menu ul a{
  display:block;
  font-family:var(--font-display);
  font-weight:400;
  font-size:1.05rem;
  color:var(--cream);
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-menu .mobile-cta{ display:flex; width:fit-content; margin:34px 0 0; justify-content:center; }
.mobile-menu .mobile-social{ display:flex; gap:14px; margin-top:30px; }

/* ============================== HERO =============================== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:center;
  padding:180px 0 120px;
  background:var(--mauve-dark);
  overflow:hidden;
}
.hero-media{
  position:absolute;
  inset:-45% 0 -45% 0;
  z-index:0;
  overflow:hidden;
}
.hero-media img,
.hero-media video{
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 40%;
  will-change:transform;
}
#heroMedia{ inset:0; }
#heroImg{ object-position:75% 30%; }
.hero-overlay{
  position:absolute; inset:0;
  z-index:1;
  background:
    radial-gradient(ellipse 65% 75% at 50% 45%, rgba(0,0,0,.78) 0%, rgba(0,0,0,.5) 45%, transparent 75%),
    linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.45) 0%, transparent 28%);
}
.hero .container{ position:relative; z-index:2; }
.hero-content{
  max-width:1100px;
  text-align:left;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 18px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  color:var(--cream);
  font-size:.76rem; letter-spacing:.05em;
  margin-bottom:26px;
  background:rgba(255,255,255,.06);
}
.hero-badge svg{ width:14px; height:14px; color:var(--gold-light); }
.hero .eyebrow{ color:var(--gold-light); }
.hero .eyebrow::before{ background:var(--gold-light); }
.hero h1{
  color:var(--white);
  font-size:clamp(2.1rem, 4.4vw, 3.15rem);
  line-height:1.2;
  margin-top:18px;
  max-width:920px;
}
.hero h1 em{ color:var(--white); font-style:normal; }
.hero-sub{
  color:rgba(255,255,255,.9);
  font-size:1.05rem;
  line-height:1.6;
  max-width:1080px;
  margin:24px 0 0;
}
.hero-actions{ display:flex; flex-wrap:wrap; justify-content:flex-start; gap:16px; margin-top:36px; }
.hero-note{
  margin-top:28px;
  font-size:.82rem;
  color:rgba(255,255,255,.65);
  display:flex; align-items:center; gap:8px;
}
.hero-note svg{ width:15px; height:15px; color:var(--gold-light); flex-shrink:0; }
.hero-scroll{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color:rgba(255,255,255,.65);
  font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  z-index:2;
}
.hero-scroll .line{ width:1px; height:38px; background:linear-gradient(rgba(255,255,255,.7), transparent); animation:scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine{ 0%{transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* ========================= CREDIBILITY BAR ========================= */
.cred-bar{
  background:#000000;
  padding:0;
  position:relative;
  z-index:2;
  isolation:isolate;
}
.cred-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.cred-item{
  padding:34px 26px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.08);
  color:var(--cream);
}
.cred-item:last-child{ border-right:none; }
.cred-item svg{ width:26px; height:26px; color:var(--gold-light); margin-bottom:12px; }
.cred-item strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.05rem;
  color:var(--white);
  margin-bottom:4px;
}
.cred-item span{ font-size:.82rem; color:#A69476; }

/* ============================ VÍDEO ============================= */
.video-stage{ position:relative; }
.video-frame-outer{
  max-width:680px;
  margin:0 auto;
  padding:5px;
  border-radius:calc(var(--radius) + 10px);
  background-image:url("../img/video-frame-texture.png");
  background-size:cover;
  background-position:center;
  box-shadow:0 26px 55px -6px rgba(0,0,0,.4), 0 10px 20px -4px rgba(0,0,0,.25);
}
.video-frame{
  position:relative;
  aspect-ratio:16/9;
  border-radius:var(--radius);
  overflow:hidden;
  background:#000;
}
.video-thumb{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.25);
  transform-origin:50% 0%;
}
.video-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(34,20,18,.05) 0%, rgba(34,20,18,.55) 100%);
  pointer-events:none;
}
.video-frame iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.video-play-btn{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%, -50%);
  width:66px; height:66px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#000;
  box-shadow:0 8px 28px rgba(34,20,18,.4), 0 0 0 8px rgba(255,255,255,.14);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.video-play-btn svg{ width:24px; height:24px; color:var(--white); margin-left:3px; }
.video-play-btn:hover{ transform:translate(-50%, -50%) scale(1.08); box-shadow:0 10px 32px rgba(34,20,18,.48), 0 0 0 10px rgba(255,255,255,.18); }
/* =========================== PROCEDIMENTOS ============================ */
.procedures{ position:relative; }
.procedures::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("../img/procedimentos-bg.png");
  background-repeat:repeat;
  background-size:960px auto;
  background-position:top center;
  opacity:.7;
  pointer-events:none;
}
.procedures > *{ position:relative; z-index:1; }
/* ---- Procedimentos: cards de foto full-bleed em carrossel ---- */
.proc-photo-carousel{ position:relative; }
.proc-photo-track{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 4px 8px;
  scrollbar-width:none;
}
.proc-photo-track::-webkit-scrollbar{ display:none; }
.proc-photo-card{
  position:relative;
  flex:0 0 calc(33.333% - 16px);
  aspect-ratio:4/5;
  border-radius:14px;
  overflow:hidden;
  scroll-snap-align:start;
  display:block;
  box-shadow:0 20px 40px -20px rgba(0,0,0,.4);
  transition:transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.proc-photo-card:hover{ transform:translateY(-6px); box-shadow:0 28px 50px -18px rgba(0,0,0,.5); }
.proc-photo-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.22,1,.36,1);
}
.proc-photo-card:hover img{ transform:scale(1.06); }
.proc-photo-overlay{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(15,12,11,.92) 0%, rgba(15,12,11,.55) 38%, rgba(15,12,11,.05) 65%, transparent 85%);
}
.proc-photo-content{
  position:absolute; left:0; right:0; bottom:0;
  padding:26px 24px 24px;
  display:flex; flex-direction:column;
  color:var(--white);
}
.proc-photo-title{
  font-family:var(--font-display); font-weight:800;
  font-size:1.28rem; line-height:1.25;
  color:var(--white);
  margin-bottom:10px;
}
.proc-photo-func{
  font-size:.86rem; line-height:1.5;
  color:rgba(255,255,255,.85);
  margin-bottom:8px;
}
.proc-photo-emo{
  font-size:.84rem; line-height:1.5; font-style:italic;
  color:var(--gold-light);
  margin-bottom:16px;
}
.proc-photo-cta{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-display); font-weight:700; font-size:.82rem;
  color:var(--white);
  border-top:1px solid rgba(255,255,255,.25);
  padding-top:14px;
  transition:gap .25s ease, color .25s ease;
}
.proc-photo-cta svg{ width:15px; height:15px; }
.proc-photo-card:hover .proc-photo-cta{ gap:12px; color:var(--gold-light); }

.proc-edge-btn{
  position:absolute; top:50%; transform:translateY(-50%);
  width:52px; height:52px; border-radius:50%;
  background:var(--white);
  border:1px solid rgba(0,0,0,.2);
  color:var(--mauve);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 28px -12px rgba(0,0,0,.3);
  z-index:5;
  transition:background .25s ease, color .25s ease, transform .25s ease;
}
.proc-edge-btn svg{ width:20px; height:20px; }
.proc-edge-btn:hover{ background:var(--gold); color:var(--white); }
.proc-edge-btn:disabled{ opacity:.3; pointer-events:none; }
.proc-edge-prev{ left:-26px; }
.proc-edge-next{ right:-26px; }

.proc-photo-carousel .proc-dots{ justify-content:center; margin-top:30px; }

.proc-carousel{ position:relative; margin-bottom:26px; }
.proc-track{
  display:flex;
  gap:26px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:4px;
  scrollbar-width:none;
}
.proc-track::-webkit-scrollbar{ display:none; }
.proc-track .proc-card{
  flex:0 0 calc(50% - 13px);
  scroll-snap-align:start;
}
.proc-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}
.proc-head .proc-arrows{ margin-top:6px; }
.proc-arrows{ display:flex; align-items:center; gap:16px; flex-shrink:0; padding-bottom:4px; }
.proc-arrow-btn{
  width:50px; height:50px; border-radius:50%;
  background:var(--white);
  border:1.5px solid rgba(0,0,0,.2);
  color:var(--mauve);
  display:flex; align-items:center; justify-content:center;
  transition:background .4s cubic-bezier(.22,1,.36,1), color .4s cubic-bezier(.22,1,.36,1), border-color .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1);
}
.proc-arrow-btn svg{ width:20px; height:20px; }
.proc-arrow-btn:hover{ background:var(--gold); border-color:var(--gold); color:var(--white); box-shadow:0 10px 22px -10px rgba(179,146,95,.6); }
.proc-arrow-btn:active{ transform:scale(.94); }
.proc-arrow-btn:disabled{ opacity:.3; pointer-events:none; }

.proc-dots{ display:flex; align-items:center; justify-content:center; gap:7px; }
.proc-dots .dot{
  width:6px; height:6px; border-radius:999px;
  background:rgba(0,0,0,.2);
  transition:background .5s cubic-bezier(.22,1,.36,1), width .5s cubic-bezier(.22,1,.36,1);
}
.proc-dots .dot.active{ background:var(--gold); width:22px; }
.proc-card{
  background:var(--white);
  border-radius:var(--radius);
  padding:34px 30px;
  box-shadow:var(--shadow-card);
  border-top:3px solid var(--gold);
  display:flex; flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease;
}
.proc-card:hover{ transform:translateY(-6px); box-shadow:0 26px 46px -22px rgba(0,0,0,.32); }
.proc-card .proc-num{
  font-family:var(--font-display); font-weight:800;
  font-size:.78rem; letter-spacing:.08em;
  color:var(--gold); margin-bottom:14px;
}
.proc-card h3{ font-size:1.2rem; margin-bottom:12px; }
.proc-card .proc-func{
  font-size:.92rem; color:var(--ink-soft); margin-bottom:10px;
  padding-bottom:14px; border-bottom:1px dashed rgba(0,0,0,.25);
}
.proc-card .proc-emo{
  font-size:.96rem; color:var(--mauve-dark); font-style:italic; margin-bottom:22px;
  flex-grow:1;
}
.proc-card a{
  font-family:var(--font-display); font-weight:700; font-size:.86rem;
  color:var(--mauve); display:inline-flex; align-items:center; gap:8px;
  transition:gap .25s ease, color .25s ease;
}
.proc-card a svg{ width:15px; height:15px; }
.proc-card a:hover{ gap:12px; color:var(--gold); }
/* ============================== ABOUT ================================ */
.about-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.about-photo{
  aspect-ratio:4/5;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.about-photo img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:50% 55%;
  display:block;
}
.about-tagbox{
  display:flex; gap:14px; align-items:flex-start;
  background:var(--white);
  box-shadow:var(--shadow-card);
  border-radius:var(--radius);
  padding:22px 24px;
  margin-top:-46px; margin-left:26px; position:relative; z-index:2;
  max-width:340px;
}
.about-tagbox img{ width:34px; height:34px; flex-shrink:0; }
.about-tagbox p{ font-size:.88rem; color:var(--ink-soft); margin:0; }
.crm-line{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.82rem; color:var(--mauve-dark);
  background:var(--cream-2);
  border:1px solid rgba(0,0,0,.25);
  padding:8px 16px; border-radius:999px;
  margin:18px 0 8px;
}
.crm-line svg{ width:15px; height:15px; color:var(--gold); }
.about-credentials{ display:flex; gap:22px; margin-top:30px; align-items:flex-start; }
.credential-col{ flex:1 1 0; display:flex; flex-direction:column; gap:26px; min-width:0; }
.credential{ display:flex; gap:14px; align-items:flex-start; }
.credential svg{ width:24px; height:24px; color:var(--gold); flex-shrink:0; margin-top:2px; transition:transform .3s ease; }
.credential:hover svg{ transform:scale(1.15); }
.credential h4{ font-size:.98rem; margin-bottom:4px; }
.credential p{ font-size:.86rem; color:var(--ink-soft); margin:0; }
.placeholder-note{
  font-size:.78rem; color:var(--mauve); opacity:.8; margin-top:24px;
  border-left:2px solid var(--gold); padding-left:12px;
}
.about-pullquote{
  font-family:var(--font-display); font-weight:700; font-style:normal;
  font-size:1.15rem; color:var(--mauve-dark); line-height:1.5;
  margin:32px 0 0; padding:22px 26px;
  background:var(--cream-2); border-radius:var(--radius);
  border-left:3px solid var(--gold);
}

/* =========================== DEPOIMENTOS ============================= */
.testimonials{ background:#000000; color:var(--cream); position:relative; }
.testimonials .container{ position:relative; z-index:1; }
.testimonials .section-head h2{ color:var(--white); }
.testimonials .section-head p{ color:rgba(255,255,255,.7); }
.test-carousel{ position:relative; }
.depoimentos-grid{
  display:flex;
  align-items:flex-start;
  gap:28px;
  padding:36px 4px 6px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.depoimentos-grid::-webkit-scrollbar{ display:none; }
.depoimentos-grid .depoimento-box{
  flex:0 0 calc(33.333% - 19px);
  max-width:none;
  scroll-snap-align:start;
}
.test-nav{ display:flex; align-items:center; justify-content:center; gap:16px; margin-top:22px; }
.proc-arrow-btn.on-dark{ background:transparent; border-color:rgba(255,255,255,.35); color:var(--white); }
.proc-arrow-btn.on-dark:hover{ background:var(--gold); border-color:var(--gold); }
.proc-dots.on-dark .dot{ background:rgba(255,255,255,.25); }
.proc-dots.on-dark .dot.active{ background:var(--gold); }
.depoimento-box{
  position:relative;
  background:var(--white);
  border-radius:28px;
  padding:56px 34px 34px;
  flex:1 1 300px;
  max-width:320px;
  min-height:460px;
  box-shadow:0 24px 48px -20px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  text-align:left;
  transition:transform .3s ease, box-shadow .3s ease;
}
.depoimento-box:hover{ transform:translateY(-6px); box-shadow:0 28px 54px -18px rgba(0,0,0,.28); }
.google-icon-badge{
  position:absolute; top:-32px; left:50%; transform:translateX(-50%);
  width:72px; height:72px; border-radius:50%;
  background:var(--white);
  box-shadow:0 12px 26px -10px rgba(0,0,0,.3);
  display:flex; align-items:center; justify-content:center;
}
.google-icon{ width:34px; height:34px; flex-shrink:0; }
.depoimento-box blockquote{
  margin:0; font-size:1rem; line-height:1.6; color:#6b6b6b; font-style:normal; font-weight:400;
}
.depoimento-box footer{ margin-top:24px; display:flex; flex-direction:column; align-items:flex-start; gap:4px; }
.depoimento-box .author{ font-family:var(--font-display); font-weight:800; font-style:normal; font-size:1rem; color:#4a4a4a; }
.depoimento-box .t-tag{ display:none; }
.depoimento-box .stars{ display:flex; gap:2px; margin-top:2px; }
.depoimento-box .stars svg{ width:16px; height:16px; color:var(--gold); }
/* ================================ FAQ ================================= */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{
  border-bottom:1px solid rgba(0,0,0,.2);
}
.faq-q{
  width:100%; text-align:left;
  background:none; border:none;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:24px 4px;
  font-family:var(--font-display); font-weight:700; font-size:1.02rem;
  color:var(--ink);
}
.faq-q .plus{
  width:26px; height:26px; flex-shrink:0;
  border-radius:50%; border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:''; position:absolute; background:var(--gold);
}
.faq-q .plus::before{ width:10px; height:1.5px; }
.faq-q .plus::after{ width:1.5px; height:10px; transition:transform .3s ease; }
.faq-item.open .faq-q .plus::after{ transform:rotate(90deg) scaleY(0); }
.faq-a{
  max-height:0; overflow:hidden;
  transition:max-height .4s ease, padding .4s ease;
}
.faq-a p{ padding:0 4px 24px; color:var(--ink-soft); font-size:.96rem; max-width:680px; }
.faq-item.open .faq-a{ max-height:340px; }

/* ============================== CTA FINAL ============================== */
.final-cta{
  position:relative;
  background:linear-gradient(150deg, var(--mauve-dark), var(--mauve) 60%, #000000);
  color:var(--white);
  text-align:center;
  overflow:hidden;
}
.final-cta .hero-media{ inset:0; }
.final-cta .hero-media video{ opacity:.4; mix-blend-mode:soft-light; }
.final-cta .hero-overlay{
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 45%, transparent 78%),
    linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.4) 0%, transparent 28%);
}
.final-cta .container{ position:relative; z-index:2; max-width:720px; }
.final-cta .eyebrow{ justify-content:center; color:var(--gold-light); }
.final-cta .eyebrow::before{ background:var(--gold-light); }
.final-cta h2{ color:var(--white); font-size:clamp(1.8rem, 3.4vw, 2.6rem); margin-top:16px; }
.final-cta p{ color:rgba(255,255,255,.85); font-size:1.06rem; max-width:560px; margin:18px auto 34px; }
.final-cta .hero-actions{ justify-content:center; }

/* =============================== FOOTER ================================ */
.site-footer{
  background:#000000;
  color:rgba(255,255,255,.75);
  padding:72px 0 0;
}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand img{ height:58px; margin-bottom:18px; }
.footer-brand p{ font-size:.88rem; color:rgba(255,255,255,.55); max-width:280px; }
.footer-social{ display:flex; gap:12px; margin-top:20px; }
.footer-col h5{
  font-family:var(--font-display); color:var(--white); font-size:.82rem;
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:20px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:.92rem; transition:color .25s ease; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-col address{ font-style:normal; font-size:.92rem; line-height:1.7; }
.footer-map-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.footer-map-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 16px;
  border:1.5px solid rgba(255,255,255,.2);
  border-radius:999px;
  font-family:var(--font-display); font-weight:700; font-size:.82rem;
  color:var(--cream);
  transition:background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.footer-map-btn svg, .footer-map-btn img{ width:18px; height:18px; object-fit:contain; flex-shrink:0; filter:brightness(0) invert(1); }
.footer-map-btn:hover{ background:var(--gold); border-color:var(--gold); color:var(--white); transform:translateY(-2px); }
.footer-bottom{
  padding:26px 0 32px;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  font-size:.78rem; color:rgba(255,255,255,.45);
  flex-wrap:wrap;
}
.footer-compliance{
  font-size:.76rem; color:rgba(255,255,255,.4);
  padding:22px 0; border-top:1px solid rgba(255,255,255,.06);
  max-width:900px;
}

/* ========================= STICKY WHATSAPP ========================= */
.wa-float{
  position:fixed; right:24px; bottom:24px; z-index:600;
  width:60px; height:60px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 14px 30px -10px rgba(37,211,102,.65);
  transition:transform .3s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:30px; height:30px; color:var(--white); }
.wa-float::before{
  content:''; position:absolute; inset:0; border-radius:50%;
  background:#25D366; opacity:.55;
  animation:waPulse 2.4s ease-out infinite;
  z-index:-1;
}
@keyframes waPulse{
  0%{ transform:scale(1); opacity:.55; }
  100%{ transform:scale(1.9); opacity:0; }
}

/* ================================ UTIL ================================= */
.text-center{ text-align:center; }
.mt-lg{ margin-top:44px; }

/* ============================== RESPONSIVE ============================== */
@media (max-width:1080px){
  .about-grid{ grid-template-columns:1fr; }
  .about-tagbox{ margin-left:0; }
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:940px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .cred-grid{ grid-template-columns:repeat(2,1fr); }
  .cred-item{ border-right:none; border-bottom:1px solid rgba(255,255,255,.08); }
  .depoimentos-grid .depoimento-box{ flex-basis:calc(50% - 14px); }
  .proc-photo-card{ flex-basis:calc(50% - 12px); }
  .proc-edge-prev{ left:0; }
  .proc-edge-next{ right:0; }
}
@media (max-width:640px){
  section{ padding:68px 0; }
  .hero{ padding-top:150px; }
  [data-edit-id="e6"], [data-edit-id="e8"]{ white-space:normal !important; }
  [data-edit-id="e8"]{ font-size:calc((100vw - 56px) / 16) !important; text-wrap:balance; }
  .hero h1 div{ display:inline; }
  [data-edit-id="e1"]{ font-size:calc((100vw - 56px) / 18) !important; text-wrap:balance; text-align:center; align-self:center; }
  .hero .eyebrow{ font-size:calc((100vw - 56px) / 42); letter-spacing:.06em; white-space:nowrap; align-self:center; }
  #heroImg{ object-position:85% 26%; }
  .cred-grid{ grid-template-columns:1fr 1fr; }
  .cred-item{ padding:22px 14px; }
  .cred-item strong, .cred-item span{ text-wrap:balance; }
  [data-edit-id="e2"]{ font-size:calc((100vw - 56px) / 19) !important; text-wrap:balance; }
  [data-edit-id="e3"]{ font-size:calc((100vw - 56px) / 16) !important; text-wrap:balance; }
  [data-edit-id="e9"]{ font-size:calc((100vw - 56px) / 16) !important; text-wrap:balance; }
  br.mobile-break{ display:block; }
  .video-frame-outer{ max-width:420px; padding:4px; }
  .video-play-btn{ width:54px; height:54px; }
  .video-play-btn svg{ width:19px; height:19px; }
  .proc-photo-card{ flex-basis:82%; }
  .proc-edge-btn{ width:42px; height:42px; }
  .proc-edge-btn svg{ width:16px; height:16px; }
  .proc-photo-title{ font-size:1.1rem; }
  .proc-track .proc-card{ flex-basis:88%; }
  .depoimentos-grid .depoimento-box{ flex-basis:86%; min-height:420px; }
  .proc-arrows{ padding-bottom:0; }
  .footer-top{ grid-template-columns:1fr; gap:36px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:10px; }
  .brand img{ height:42px; }
  .hero-actions{ flex-direction:column; align-items:center; width:100%; }
  .hero-actions .btn{ width:auto; justify-content:center; text-align:center; }
  .btn{ padding:13.1px 26.25px; font-size:.805rem; gap:8.75px; }
  .btn svg{ width:15.75px; height:15.75px; }
  .wa-float{ width:52px; height:52px; right:16px; bottom:16px; }
  .wa-float svg{ width:26px; height:26px; }
}

/* ============================ EDIT MODE (local tool) ============================ */
.dev-toolbar{
  position:fixed; top:16px; left:16px; z-index:900;
  display:flex; flex-direction:column; gap:8px;
}
.dev-btn{
  display:flex; align-items:center; gap:8px;
  background:rgba(0,0,0,.88);
  color:var(--cream);
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  padding:9px 16px 9px 12px;
  font-family:var(--font-display); font-weight:700; font-size:.8rem;
  backdrop-filter:blur(6px);
  transition:background .25s ease, transform .25s ease;
}
.dev-btn svg{ width:16px; height:16px; flex-shrink:0; }
.dev-btn:hover{ background:var(--gold); transform:translateY(-1px); }
.dev-btn.active{ background:var(--gold); color:var(--ink); }

.edit-actionbar{
  display:none;
  position:fixed; top:16px; left:50%; transform:translateX(-50%);
  z-index:900;
  align-items:center; gap:14px;
  background:rgba(0,0,0,.92);
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  padding:8px 10px 8px 20px;
  backdrop-filter:blur(6px);
}
body.edit-mode .edit-actionbar{ display:flex; }
.edit-actionbar-label{
  color:var(--gold-light); font-family:var(--font-display); font-weight:700;
  font-size:.78rem; letter-spacing:.06em; text-transform:uppercase;
}
.edit-actionbar .btn{ padding:9px 18px; font-size:.8rem; }

body.edit-mode [data-edit-id]{ transition:outline-color .15s ease, background .15s ease; outline:1px dashed transparent; outline-offset:2px; border-radius:2px; }
body.edit-mode [data-edit-id]:hover{ outline-color:rgba(179,146,95,.55); cursor:text; }
body.edit-mode [data-edit-id]:focus{ outline:2px solid var(--gold); background:rgba(179,146,95,.08); }

body.edit-mode [data-edit-section-id]{ position:relative; }
.section-edit-btn{
  display:none;
  position:absolute; top:14px; right:14px; z-index:800;
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.35);
  color:var(--mauve);
  align-items:center; justify-content:center;
  box-shadow:0 8px 20px -10px rgba(0,0,0,.35);
}
body.edit-mode .section-edit-btn{ display:flex; }
.section-edit-btn svg{ width:17px; height:17px; }
#top .section-edit-btn{ top:104px; }
#top .section-edit-panel{ top:146px; }
.section-edit-btn:hover{ background:var(--gold); color:var(--white); }

.section-edit-panel{
  display:none;
  position:absolute; top:56px; right:14px; z-index:801;
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:0 20px 40px -16px rgba(0,0,0,.35);
  padding:16px 18px;
  width:200px;
  flex-direction:column; gap:12px;
}
.section-edit-panel.open{ display:flex; }
.section-edit-panel label{
  display:flex; flex-direction:column; gap:5px;
  font-size:.76rem; color:var(--ink-soft);
  font-family:var(--font-display); font-weight:700;
}
.section-edit-panel input[type="color"]{
  width:100%; height:32px; border:1px solid rgba(0,0,0,.3); border-radius:4px; padding:2px; background:none;
}
.section-edit-panel input[type="number"]{
  width:100%; padding:7px 10px; border:1px solid rgba(0,0,0,.3); border-radius:4px;
  font-family:var(--font-body); font-size:.86rem; color:var(--ink);
}

.edit-element-toolbar{
  display:none;
  position:absolute; z-index:901;
  background:rgba(0,0,0,.94);
  border:1px solid rgba(255,255,255,.15);
  border-radius:10px;
  padding:8px 10px;
  gap:14px;
  backdrop-filter:blur(6px);
  box-shadow:0 16px 30px -14px rgba(0,0,0,.5);
}
.edit-element-toolbar.visible{ display:flex; }
.et-group{ display:flex; align-items:center; gap:6px; }
.et-group span{ color:rgba(255,255,255,.6); font-size:.72rem; font-family:var(--font-display); font-weight:700; margin-right:2px; }
.et-group button{
  width:22px; height:22px; border-radius:5px;
  background:rgba(255,255,255,.1); color:var(--cream);
  border:none; font-size:.95rem; line-height:1;
  display:flex; align-items:center; justify-content:center;
}
.et-group button:hover{ background:var(--gold); color:var(--ink); }
.et-group button.active{ background:var(--gold); color:var(--ink); }
.et-group button svg{ width:14px; height:14px; flex-shrink:0; }
.et-group input{
  width:44px; text-align:center;
  background:rgba(255,255,255,.08); color:var(--white);
  border:1px solid rgba(255,255,255,.15); border-radius:5px;
  font-size:.78rem; padding:3px 2px;
}

.edit-toast{
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px);
  z-index:950;
  background:var(--ink); color:var(--cream);
  border:1px solid rgba(255,255,255,.15);
  border-radius:999px;
  padding:12px 24px;
  font-size:.84rem;
  opacity:0; pointer-events:none;
  transition:opacity .3s ease, transform .3s ease;
}
.edit-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
.edit-toast.error{ background:#7a2e2e; }

@media (max-width:640px){
  .edit-actionbar{ left:16px; right:16px; transform:none; padding:8px 12px; flex-wrap:wrap; }
  .edit-actionbar .btn{ padding:8px 14px; font-size:.74rem; }
  .dev-toolbar{ top:auto; bottom:16px; }
}
