/* Premium clean base */
@font-face{
  font-family:"Caroline";
  src:url("../fonts/Caroline.woff2") format("woff2"),
      url("../fonts/Caroline.woff") format("woff"),
      url("../fonts/Caroline.otf") format("opentype");
  font-display:swap;
}

:root{
  --bg:#FCFCFC;
  --sand:#D4CDC8;
  --rose:#CAB5B1;
  --nude:#B7998E;
  --taupe:#997E75;
  --text:#1c1a19;
  --muted:#6c6460;
  --card:rgba(202,181,177,0.18);
  --line:rgba(153,126,117,0.28);
}


/* Local fonts (add the files in assets/fonts) */
@font-face{
  font-family:"Onest";
  src:url("../fonts/Onest.woff2") format("woff2");
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Adelia";
  src:url("../fonts/Adelia.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Onest", Inter, system-ui, -apple-system, Arial, sans-serif;
  font-weight:300;
  line-height:1.75;

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

a{color:inherit; text-decoration:none}

.container{width:min(1100px, 92vw); margin:0 auto}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(252,252,252,0.78);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; flex-direction:column;
  gap:2px;
}
.brand .name{
  font-family:"Caroline", Georgia, serif;
  font-size:34px;
  line-height:1;
  letter-spacing:0.2px;
}
.brand .tag{
  font-size:12px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  color:var(--muted);
}

.nav-links{display:flex; gap:22px; align-items:center}
.nav-links a{
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:rgba(28,26,25,0.86);
  position:relative;
}
.nav-links a:after{
  content:"";
  position:absolute; left:0; bottom:-6px;
  width:0; height:1px;
  background:var(--taupe);
  transition:width .25s ease;
}
.nav-links a:hover:after{width:100%}

.hamburger{display:none; border:1px solid var(--line); background:transparent; padding:10px 12px; border-radius:999px}
.hamburger span{display:block; width:18px; height:1px; background:var(--text); margin:4px 0; opacity:0.85}


.mobile-menu{display:none;}
@media (max-width:820px){
  .nav-links{display:none}
  .hamburger{display:block}
  .mobile-menu{
    display:none;
    padding:14px 0 18px;
  }
  .mobile-menu a{
    display:block;
    padding:10px 0;
    border-top:1px solid var(--line);
    font-size:13px;
    letter-spacing:1.6px;
    text-transform:uppercase;
  }
  .mobile-menu.open{display:block}
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  border:1px solid var(--line);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn.primary{
  background:var(--taupe);
  color:#fff;
  border-color:rgba(153,126,117,0.55);
}
.btn.primary:hover{transform:translateY(-1px)}
.btn.ghost{
  background:transparent;
  color:rgba(28,26,25,0.88);
}
.btn.ghost:hover{transform:translateY(-1px); border-color:rgba(153,126,117,0.55)}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:34px;
  align-items:center;
  padding:56px 0;
}
.hero h1{
  font-family:"Caroline", Georgia, serif;
  font-size:62px;
  line-height:0.95;
  margin:0 0 14px;
}
.hero .lead{
  color:rgba(28,26,25,0.78);
  font-size:16px;
  max-width:520px;
  margin:0 0 22px;
}
.hero .actions{display:flex; gap:12px; flex-wrap:wrap}

.hero .media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  background:linear-gradient(180deg, var(--sand), var(--bg));
}
.hero .media img{width:100%; height:560px; object-fit:cover; object-position:50% 22%}
.hero .media:after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(transparent 55%, rgba(28,26,25,0.12));
  pointer-events:none;
}

@media (max-width:980px){
  .hero .wrap{grid-template-columns:1fr; padding:44px 0}
  .hero h1{font-size:54px}
  .hero .media img{height:520px}
}

/* Sections */
.section{padding:62px 0}
.section.tight{padding:44px 0}

.kicker{
  font-size:12px;
  letter-spacing:2.4px;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 10px;
}

.h2{
  font-family:"Caroline", Georgia, serif;
  font-size:46px;
  margin:0 0 12px;
  line-height:1;
}

.sub{
  color:rgba(28,26,25,0.74);
  max-width:720px;
  margin:0 0 26px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
@media (max-width:980px){
  .grid{grid-template-columns:1fr}
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 18px 16px;
  transition:transform .2s ease;
}
.card:hover{transform:translateY(-2px)}
.card h3{
  margin:0 0 8px;
  font-size:13px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  font-weight:400;
}
.card p{margin:0; color:rgba(28,26,25,0.76)}
.card .link{
  display:inline-block;
  margin-top:12px;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(153,126,117,0.95);
}

/* Parallax band */
.parallax{
  position:relative;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg, rgba(212,205,200,0.55), rgba(252,252,252,1));
}
.parallax .inner{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:26px;
  align-items:center;
  padding:56px 0;
}
.parallax .photo{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  height:460px;
}
.parallax .photo img{
  width:100%; height:100%; object-fit:cover; object-position:50% 20%;
  transform:translateY(0px) scale(1.06);
  will-change:transform;
}
@media (max-width:980px){
  .parallax .inner{grid-template-columns:1fr}
  .parallax .photo{height:520px}
}

/* Procedure page */
.page-hero{
  padding:34px 0 0;
}
.page-hero .crumb{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 10px;
}
.page-hero h1{
  font-family:"Caroline", Georgia, serif;
  font-size:56px;
  line-height:0.95;
  margin:0 0 10px;
}

.content{
  padding:26px 0 64px;
}
.content .box{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(252,252,252,0.6);
  padding:18px;
}
.content h2{
  font-size:13px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  font-weight:400;
  margin:0 0 8px;
}
.content ul{margin:8px 0 0 18px; padding:0}

.cta{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta p{margin:0; color:rgba(28,26,25,0.76)}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background:rgba(212,205,200,0.25);
}
.footer .row{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer .small{font-size:12px; letter-spacing:1.8px; text-transform:uppercase; color:rgba(28,26,25,0.72)}

/* Reveal animations */
.reveal{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease}
.reveal.show{opacity:1; transform:translateY(0)}



/* Hero full width with parallax background */
.hero-parallax{
  position:relative;
  width:100%;
  min-height: clamp(520px, 78vh, 860px);
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background-image:url("../img/hero-banner.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:1;
  max-width: 740px;
  padding: 70px 0;
}
.hero-kicker{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color: rgba(255,255,255,.78);
  margin:0 0 14px 0;
}
.hero-title{
  font-family:"Adelia","Caroline", Georgia, serif;
  font-weight:400;
  font-size: clamp(56px, 6.2vw, 108px);
  line-height:0.95;
  color: rgba(255,255,255,.94);
  margin:0 0 18px 0;
}
.hero-subtitle{
  font-size: clamp(16px, 1.4vw, 20px);
  line-height:1.65;
  color: rgba(255,255,255,.80);
  margin:0 0 28px 0;
  max-width: 560px;
}

/* Attention animation for CTA buttons */
.btn.attention{
  position:relative;
  overflow:hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  animation: btnPulse 2.2s ease-in-out infinite;
}
.btn.attention::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-45%;
  width:55%;
  height:180%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.32) 50%, rgba(255,255,255,0) 100%);
  animation: btnShine 2.8s ease-in-out infinite;
}
@keyframes btnPulse{
  0%,100%{ transform: translateY(0) scale(1); }
  50%{ transform: translateY(-1px) scale(1.02); }
}
@keyframes btnShine{
  0%{ left:-55%; opacity:0; }
  18%{ opacity:1; }
  55%{ left:110%; opacity:0; }
  100%{ left:110%; opacity:0; }
}

/* Mobile performance */
@media (max-width: 900px){
  .hero-parallax{ background-attachment:scroll; }
  .hero-overlay{ background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%); }
  .hero-inner{ padding: 56px 0; }
}



/* Hero built (inspired by banner) */
.hero-built{
  position:relative;
  width:100%;
  min-height: clamp(560px, 78vh, 900px);
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-built .hero-bg{
  position:absolute;
  inset:-120px 0 -120px 0;
  background:
    radial-gradient(1200px 600px at 15% 40%, rgba(202,181,177,.55) 0%, rgba(202,181,177,0) 60%),
    radial-gradient(1000px 520px at 78% 52%, rgba(183,153,142,.35) 0%, rgba(183,153,142,0) 62%),
    linear-gradient(180deg, #D4CDC8 0%, #CAB5B1 52%, #B7998E 100%);
  transform: translateY(0);
  will-change: transform;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items:end;
  padding: 56px 0;
}
.hero-copy{max-width: 720px; padding: 20px 0 40px;}
.hero-built .hero-kicker{
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  margin: 0 0 14px;
}
.hero-built .hero-title{
  font-family:"Adelia","Caroline", Georgia, serif;
  font-weight:400;
  font-size: clamp(56px, 6.2vw, 110px);
  line-height: 0.95;
  color: rgba(255,255,255,.96);
  margin: 0 0 18px;
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.hero-built .hero-subtitle{
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  margin: 0 0 28px;
  max-width: 560px;
}
.hero-photo{
  position:relative;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  min-height: 520px;
}
.hero-photo-img{
  width: min(520px, 44vw);
  height: auto;
  max-height: 720px;
  object-fit: contain;
  transform: translateY(0) scale(1);
  will-change: transform;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.22));
}
.hero-photo-fade{
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(420px 520px at 70% 55%, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 60%, rgba(212,205,200,.38) 100%);
  mix-blend-mode: soft-light;
}

/* Mobile */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    align-items:start;
    padding: 44px 0;
  }
  .hero-photo{
    justify-content:center;
    min-height: 320px;
    padding-bottom: 10px;
  }
  .hero-photo-img{
    width: min(520px, 86vw);
    max-height: 520px;
  }
  .hero-copy{padding: 10px 0 0;}
}



/* Hero built refinements (spacing/proportions like mock) */
.hero-built{
  min-height: clamp(620px, 82vh, 980px);
}
.hero-grid{
  padding: 96px 0 78px;
  gap: 54px;
  align-items:center;
}
.hero-copy{
  padding: 10px 0 10px;
  max-width: 760px;
}
.hero-built .hero-kicker{
  margin: 0 0 26px;
  font-size: 14px;
  letter-spacing: 2.6px;
}
.hero-built .hero-title{
  margin: 0 0 26px;
}
.hero-built .hero-subtitle{
  margin: 0 0 46px;
  max-width: 620px;
}
.hero-built .hero-subtitle br{ display: inline; }
.hero-built .actions{
  gap: 18px;
}
.hero-built .btn{
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 1.8px;
}
.hero-photo{
  min-height: 620px;
  justify-content:flex-end;
}
.hero-photo-img{
  width: min(560px, 46vw);
  max-height: 820px;
}
@media (max-width: 980px){
  .hero-grid{
    padding: 56px 0 34px;
    gap: 18px;
  }
  .hero-built .hero-kicker{ margin-bottom: 18px; }
  .hero-built .hero-subtitle{ margin-bottom: 28px; }
  .hero-photo{ min-height: 360px; }
  .hero-photo-img{ width: min(520px, 92vw); max-height: 560px; }
}



/* Hero figure (PNG, blended into background, no rectangle) */
.hero-built{ position: relative; }
.hero-figure{
  position:absolute;
  right: max(-10px, -1vw);
  bottom: -6px;
  width: min(620px, 48vw);
  height: min(860px, 86vh);
  background-image: url("../img/hero-cris.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events:none;
  z-index: 1;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.18));
  will-change: transform;
  /* fade edges so it feels part of the background even if PNG isn't transparent */
  -webkit-mask-image: radial-gradient(closest-side at 58% 52%, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 98%);
  mask-image: radial-gradient(closest-side at 58% 52%, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 98%);
}

.hero-grid{
  position:relative;
  z-index:2;
}

@media (max-width: 980px){
  .hero-figure{
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, 92vw);
    height: 520px;
    margin: 0 auto 10px;
    background-position: center bottom;
  }
  .hero-grid{ padding-bottom: 18px; }
}


/* Legacy hero-photo disabled */
.hero-photo{display:none !important;}



/* Hero figure tweaks for full-body PNG */
.hero-figure{
  width: min(640px, 46vw);
  height: min(980px, 96vh);
  right: max(-30px, -2vw);
  bottom: -18px;
  -webkit-mask-image: radial-gradient(closest-side at 55% 46%, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(closest-side at 55% 46%, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 76%, rgba(0,0,0,0) 100%);
}
@media (max-width: 980px){
  .hero-figure{
    height: 560px;
  }
}



/* Hero typography refinements (smaller title + clearer spacing) */
.hero-built .hero-kicker{
  margin-bottom: 30px;
}
.hero-built .hero-title{
  font-size: clamp(48px, 5.4vw, 92px);
  margin-bottom: 28px;
}
.hero-built .hero-subtitle{
  max-width: 640px;
  margin-bottom: 44px;
}



/* Hero refinements v4 (subtitle in exactly 2 lines on desktop + smaller title) */
.hero-built .hero-title{
  font-size: clamp(32px, 3.6vw, 42px);
}
.hero-built .hero-subtitle{
  max-width: 760px;
}
.hero-built .subtitle-line{
  display:block;
  white-space:nowrap;
}
@media (max-width: 980px){
  .hero-built .subtitle-line{
    white-space:normal;
  }
}



/* Hero figure alignment: lower a bit + vertically centered with text */
.hero-figure{
  top: 50%;
  bottom: auto;
  --figParallax: 0px;
  transform: translateY(calc(-50% + 34px + var(--figParallax)));
}



/* Header with logo (no nav text) */
.brand-logo{
  height: 54px;
  width: auto;
  display:block;
}
@media (max-width: 980px){
  .brand-logo{ height: 48px; }
}

/* Hero: reduce top/bottom height by 50px each (total 100px) */
.hero-grid{
  padding: 46px 0 28px;
}

/* Subtitle lines: keep exactly 3 lines on desktop */
.hero-built .subtitle-line{
  display:block;
  white-space:nowrap;
}
@media (max-width: 980px){
  .hero-built .subtitle-line{ white-space:normal; }
  .hero-grid{ padding: 44px 0 24px; }
}



/* v7: Hero height reduced by ~200px and centered composition */
.hero-built{
  min-height: clamp(420px, 66vh, 760px);
}
.hero-grid{
  padding: 26px 0 18px; /* minus ~200px overall compared to earlier */
  align-items: center;
}
.hero-copy{
  padding: 0;
}
.hero-built .hero-kicker{ margin-bottom: 22px; }
.hero-built .hero-title{ margin-bottom: 22px; }
.hero-built .hero-subtitle{ margin-bottom: 34px; }

/* Keep figure centered with text even with reduced hero height */
.hero-figure{
  height: min(860px, 82vh);
  transform: translateY(calc(-50% + 18px + var(--figParallax)));
}

/* Header logo sizing + restore nav spacing */
.brand-logo{ height: 52px; width:auto; display:block; }
@media (max-width: 980px){
  .brand-logo{ height: 46px; }
  .hero-grid{ padding: 24px 0 12px; }
  .hero-figure{ height: 520px; transform: translateY(calc(-50% + 10px + var(--figParallax))); }
}



/* v9 tweaks: bring figure closer, move kicker up, adjust subtitle line-height */
.hero-grid{
  gap: 34px; /* closer photo to text */
}

.hero-built .hero-kicker{
  margin-top: -30px; /* move up ~30px */
}

/* tighter (as requested) subtitle leading */
.hero-built .hero-subtitle{
  line-height: 54px;
}

/* Bring PNG closer to text */
.hero-figure{
  right: max(-10px, -0.5vw);
  width: min(660px, 50vw);
  --figX: -22px;
  transform: translate3d(var(--figX), calc(-50% + 18px + var(--figParallax)), 0);
}

/* Mobile: keep natural leading */
@media (max-width: 980px){
  .hero-built .hero-kicker{ margin-top: 0; }
  .hero-built .hero-subtitle{ line-height: 1.55; }
  .hero-figure{ --figX: 0px; transform: translate3d(0, calc(-50% + 10px + var(--figParallax)), 0); }
}



/* v10 tweaks: subtitle line-height slightly tighter (back to relative), kicker up more */
.hero-built .hero-kicker{
  margin-top: -60px; /* +30px up from previous */
}

/* Subtitle: back to relative leading, slightly tighter than before */
.hero-built .hero-subtitle{
  line-height: 1.52;
}
@media (max-width: 980px){
  .hero-built .hero-subtitle{ line-height: 1.55; }
}



/* v11 tweaks: kicker up + photo closer to text (shift left) */
.hero-built .hero-kicker{
  margin-top: -90px; /* +30px up */
}

/* Move the PNG figure closer to the text (to the left from viewer perspective) */
.hero-figure{
  --figX: -44px; /* was -22px */
  transform: translate3d(var(--figX), calc(-50% + 18px + var(--figParallax)), 0);
}
@media (max-width: 980px){
  .hero-built .hero-kicker{ margin-top: 0; }
  .hero-figure{ --figX: 0px; transform: translate3d(0, calc(-50% + 10px + var(--figParallax)), 0); }
}



/* v12 tweaks: move PNG 100px left, increase spacing between kicker and title, re-center text group */
.hero-figure{
  --figX: -144px; /* -44px + 100px left */
  transform: translate3d(var(--figX), calc(-50% + 18px + var(--figParallax)), 0);
}

/* Increase distance between kicker and title */
.hero-built .hero-kicker{
  margin-bottom: 42px;
}

/* Re-center the whole text group vertically in banner */
.hero-copy{
  transform: translateY(24px);
}

/* Keep overall alignment centered */
.hero-grid{ align-items: center; }

@media (max-width: 980px){
  .hero-copy{ transform:none; }
  .hero-built .hero-kicker{ margin-bottom: 22px; }
  .hero-figure{ --figX: 0px; transform: translate3d(0, calc(-50% + 10px + var(--figParallax)), 0); }
}



/* v13 tweaks: lower text block +50px, shift text+image to the right, enlarge photo */
.hero-copy{
  transform: translateY(74px) translateX(40px);
}

/* Move image to the right and enlarge */
.hero-figure{
  --figX: -64px;
  width: min(740px, 56vw);
  height: min(1040px, 100vh);
}

/* Mobile balance */
@media (max-width: 980px){
  .hero-copy{ transform:none; }
  .hero-figure{
    width: min(560px, 94vw);
    height: 600px;
    --figX: 0px;
  }
}



/* v14: shift text block + image 80px to the right */
.hero-copy{
  transform: translateY(74px) translateX(120px); /* +80px from 40px */
}

.hero-figure{
  --figX: 16px; /* +80px right from -64px */
}
@media (max-width: 980px){
  .hero-copy{ transform:none; }
  .hero-figure{ --figX: 0px; }
}



/* Adelia title override */
.adelia-title{
  font-family:"Adelia","Caroline", Georgia, serif;
  font-weight:400;
  letter-spacing:0.2px;
}



/* v16: Detalhes que fazem diferença - smaller + custom color */
.adelia-title{
  font-size: 40px;
  color: #9c6c66;
}
@media (max-width: 980px){
  .adelia-title{ font-size: 34px; }
}



/* v17: More spacing in "Detalhes que fazem diferença" block */
.section .kicker{
  margin-bottom: 18px;
}
.section .adelia-title{
  margin-top: 0;
  margin-bottom: 22px;
}
.section .sub{
  margin-top: 0;
  margin-bottom: 34px;
}

/* Keep it nice on mobile */
@media (max-width: 980px){
  .section .kicker{ margin-bottom: 16px; }
  .section .adelia-title{ margin-bottom: 18px; }
  .section .sub{ margin-bottom: 28px; }
}



/* v18: more spacing between kicker and title in "Detalhes" section */
.section .kicker{
  margin-bottom: 34px;
}

/* v18: subtle gradient on the 3 feature cards */
.feature-cards .card{
  background: linear-gradient(135deg,
    rgba(212,205,200,.72) 0%,
    rgba(202,181,177,.46) 48%,
    rgba(183,153,142,.28) 100%);
  border: 1px solid rgba(153,126,117,.22);
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}
.feature-cards .card:hover{
  transform: translateY(-3px);
}



/* v19: Results block title in Adelia */
.results-adelia{
  font-family:"Adelia","Caroline", Georgia, serif;
}



/* v21: more spacing in Results section text blocks (50px between each) */
.parallax .kicker{
  margin-bottom: 40px;
}
.parallax .h2,
.parallax .adelia-title{
  margin-bottom: 40px;
}
.parallax .sub{
  margin-top: 0;
}



/* v22: adjust Results section spacing to 40px */
.parallax .kicker{ margin-bottom: 40px; }
.parallax .h2,
.parallax .adelia-title{ margin-bottom: 40px; }



/* v23: Treatments cards with images */
.treatments-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card-img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
@media (max-width: 1100px){
  .treatments-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-img{ height: 210px; }
}
@media (max-width: 640px){
  .treatments-grid{ grid-template-columns: 1fr; }
  .card-img{ height: 220px; }
}



/* v24: procedimentos page cards with images */
.proc-card-img{
  width:100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.content .grid .card{
  display:block;
}

/* FAQ mini */
.faq{display:grid;gap:14px;margin-top:12px;}
.faq-item{padding:14px 14px;border-radius:16px;background:rgba(255,255,255,.55);border:1px solid rgba(153,126,117,.14);}
.faq-q{font-weight:600;margin-bottom:6px;}
.faq-a{opacity:.9;}
.list{padding-left:18px;margin:0;}
.list li{margin:6px 0;}


/* Pricing badge in cards */
.price{margin-top:10px;font-size:13px;line-height:1.35;color:#9c6c66;opacity:.95;}


/* Visual pricing block on procedure pages */
.price-box{
  margin: 26px 0 26px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(246,237,235,.85), rgba(236,220,217,.55));
  border: 1px solid rgba(156,108,102,.22);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.price-box__label{
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
  color: #9c6c66;
  margin-bottom: 10px;
}
.price-box__value{
  font-size: 18px;
  line-height: 1.45;
  color: #2d2322;
  font-weight: 500;
}
.price-box__note{
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(45,35,34,.70);
}

.price-box__value br{content:"";}

/* About hero */
.about-hero{padding:70px 0 40px;background:linear-gradient(180deg, rgba(246,237,235,.55), rgba(255,255,255,0));}
.grid-2{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center;}
.about-media img{width:100%;max-width:520px;border-radius:26px;box-shadow:0 22px 60px rgba(0,0,0,.14);display:block;}
.about-copy .kicker{margin-top:18px;}
@media (max-width: 900px){
  .grid-2{grid-template-columns:1fr;gap:24px;}
  .about-media img{max-width:100%;}
}



/* v36: Mobile hero layout (text left, image right) + ensure title font (Adelia) matches desktop */

/* Make all section titles premium with Adelia */
.h2{
  font-family: "Adelia","Caroline", Georgia, serif;
  font-weight: 400;
}

/* Hero mobile: keep 2-column layout */
@media (max-width: 820px){
  .hero .wrap{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: center;
  }

  /* Text column left */
  .hero-copy{
    grid-column: 1;
    transform: none; /* avoid drifting on mobile */
  }

  /* Image column right */
  .hero-figure{
    grid-column: 2;
    width: min(330px, 44vw);
    height: min(520px, 64vh);
    --figX: 40px; /* push slightly to the right */
    justify-self: end;
    align-self: center;
  }
}

/* Very small screens: still keep side-by-side but tighten typography */
@media (max-width: 420px){
  .hero .wrap{
    grid-template-columns: 1.15fr .85fr;
    gap: 12px;
  }
  .hero-figure{
    width: min(260px, 42vw);
    height: 460px;
    --figX: 30px;
  }
  .hero-copy .h1{
    font-size: 44px;
    line-height: 1.05;
  }
  .hero-copy .h2{
    font-size: 26px;
    line-height: 1.1;
  }
}



/* v37: Mobile titles in Adelia + hero mobile bigger image + buttons side-by-side smaller */
@media (max-width: 980px){
  h1,h2,h3,.h1,.h2,.title{
    font-family:"Adelia","Caroline", Georgia, serif !important;
    font-weight: 400 !important;
  }
}

/* Hero mobile tweaks */
@media (max-width: 820px){
  .hero-figure{
    width: min(380px, 52vw);
    height: min(560px, 70vh);
  }
  .cta-row{
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
  }
  .cta-row .btn{
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1;
    min-height: 42px;
    white-space: nowrap;
  }
}

/* Very small screens: keep two buttons side-by-side and avoid overflow */
@media (max-width: 420px){
  .cta-row{
    gap: 8px;
  }
  .cta-row .btn{
    padding: 10px 12px;
    font-size: 12px;
    min-height: 40px;
  }
}



/* v38: Mobile hero to match reference layout (text left, image right, larger image, stacked buttons) */
@media (max-width: 820px){
  .hero .wrap{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center;
  }

  .hero-copy{
    grid-column: 1;
    align-self: center;
  }

  .hero-figure{
    grid-column: 2;
    justify-self: end;
    align-self: end;
    width: min(460px, 54vw);
    height: min(660px, 78vh);
    --figX: 46px;   /* keep near right edge */
    --figY: 30px;   /* slightly lower like reference */
  }

  /* Buttons stacked like the reference */
  .cta-row{
    display:flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .cta-row .btn{
    width: min(320px, 84vw);
    padding: 12px 18px;
    font-size: 13px;
    min-height: 44px;
  }
}

/* Small screens: keep readable and prevent overlaps */
@media (max-width: 420px){
  .hero .wrap{ gap: 14px; }
  .hero-figure{
    width: min(360px, 52vw);
    height: 620px;
    --figX: 38px;
    --figY: 34px;
  }
  .hero-copy .h1{
    font-size: 54px;
    line-height: 1.02;
  }
  .hero-copy .h2{
    font-size: 32px;
    line-height: 1.08;
  }
}



/* v39: Mobile hero faithful to reference (text left, image right, stacked CTAs, no image above) */
@media (max-width: 980px){
  .hero-built{
    min-height: 100vh;
    display:block;
  }
  .hero-grid{
    grid-template-columns: 1fr;
    align-items: center;
    padding: 90px 0 42px;
  }
  .hero-copy{
    max-width: 58%;
    padding: 0;
  }

  /* keep PNG on the right, not in normal flow */
  .hero-figure{
    position:absolute !important;
    right: -14px;
    bottom: -10px;
    width: 54vw;
    height: 76vh;
    margin: 0 !important;
    background-position: right bottom;
  }

  /* CTAs stacked like mock */
  .hero-built .actions{
    display:flex;
    flex-direction: column;
    gap: 16px;
    align-items:flex-start;
  }
  .hero-built .actions .btn{
    width: min(320px, 86vw);
    padding: 12px 16px;
    font-size: 13px;
    min-height: 44px;
  }
}

/* Very small screens: allow a bit more space and keep image readable */
@media (max-width: 420px){
  .hero-copy{ max-width: 64%; }
  .hero-figure{
    width: 58vw;
    height: 72vh;
    right: -18px;
  }
  .hero-built .hero-title{ font-size: 56px; }
  .hero-built .hero-subtitle{ font-size: 16px; line-height: 1.6; }
}



/* v40: Hero title uses Adelia (including mobile) */
.hero-built .hero-title,
.hero-copy .h1,
.hero .h1,
.hero h1{
  font-family: "Adelia","Caroline", Georgia, serif !important;
  font-weight: 400 !important;
}



/* v40: Mobile hero image larger */
@media (max-width: 980px){
  .hero-figure{
    width: 62vw !important;
    height: 82vh !important;
    right: -22px !important;
    bottom: -14px !important;
  }
}
@media (max-width: 420px){
  .hero-figure{
    width: 66vw !important;
    height: 78vh !important;
  }
}
