/* ================================================================
   LIFT HD ÍNTIMO – Dra. Bruna Ghetti
   style.css – Otimizado para performance (Core Web Vitals)
   ================================================================ */

/* ── RESET & VARIÁVEIS ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root{
  --cream:#faf7f2;
  --blush:#e8c9b8;
  --rose:#c4806a;
  --deep:#3d2b25;
  --gold:#b89a72;
  --gold-light:#d4b896;
  --text:#4a3730;
  --muted:#9e8880;
  --t:.3s ease;
}

html{scroll-behavior:smooth,}
body{background:var(--cream);color:var(--text);font-family:'Jost',sans-serif;font-weight:300;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  padding:1.4rem 4rem;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(250,247,242,.92);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(184,154,114,.2);
}
.nav-logo{font-family:'Cormorant Garamond',serif;font-size:1.1rem;font-weight:400;letter-spacing:.18em;color:var(--deep);text-transform:uppercase}
.nav-right{display:flex;gap:1.5rem;align-items:center}
.nav-link{font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);transition:color var(--t)}
.nav-link:hover{color:var(--deep)}
.nav-cta{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);border:1px solid var(--gold);padding:.5rem 1.4rem;transition:all var(--t)}
.nav-cta:hover{background:var(--gold);color:var(--cream)}

/* ── BOTÕES ── */
.btn-primary{
  display:inline-block;background:var(--rose);color:var(--cream);
  padding:1.1rem 2.8rem;font-family:'Jost',sans-serif;
  font-size:.75rem;letter-spacing:.25em;text-transform:uppercase;
  border:none;cursor:pointer;transition:background var(--t);
  position:relative;overflow:hidden;
}
.btn-primary::after{content:'';position:absolute;left:0;bottom:0;width:0;height:2px;background:var(--cream);transition:width .4s}
.btn-primary:hover{background:var(--deep)}
.btn-primary:hover::after{width:100%}

.btn-light{
  display:inline-block;background:var(--cream);color:var(--deep);
  padding:1.2rem 3.5rem;font-family:'Jost',sans-serif;
  font-size:.75rem;letter-spacing:.25em;text-transform:uppercase;
  border:none;cursor:pointer;transition:background var(--t),color var(--t);
}
.btn-light:hover{background:var(--rose);color:var(--cream)}

.btn-form-trigger{
  display:inline-block;background:var(--rose);color:var(--cream);
  padding:1.1rem 2.8rem;font-family:'Jost',sans-serif;
  font-size:.75rem;letter-spacing:.25em;text-transform:uppercase;
  border:none;cursor:pointer;transition:background var(--t);
}
.btn-form-trigger:hover{background:var(--deep)}

/* ── HERO ── */
.hero{min-height:100vh;display:grid;grid-template-columns:1fr 1fr;padding-top:80px;position:relative;overflow:hidden}
.hero-left{display:flex;flex-direction:column;justify-content:center;padding:6rem 4rem 6rem 6rem;position:relative;z-index:2}
.hero-tag{font-size:.65rem;letter-spacing:.35em;text-transform:uppercase;color:var(--gold);margin-bottom:2rem;display:flex;align-items:center;gap:.8rem}
.hero-tag::before{content:'';display:block;width:40px;height:1px;background:var(--gold)}
.hero-title{font-family:'Cormorant Garamond',serif;font-size:clamp(3.2rem,5vw,5.5rem);line-height:1;font-weight:300;color:var(--deep);margin-bottom:1.5rem}
.hero-title em{font-style:italic;color:var(--rose)}
.hero-subtitle{font-size:.95rem;line-height:1.9;color:var(--muted);max-width:420px;margin-bottom:3rem;font-weight:300}
.hero-right{position:relative;overflow:hidden}
.hero-right img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top}
.hero-right::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,rgba(250,247,242,.35) 0%,transparent 40%),linear-gradient(to top,rgba(61,43,37,.55) 0%,transparent 50%);pointer-events:none}
.hero-ornament{position:absolute;z-index:2;font-family:'Cormorant Garamond',serif;font-size:clamp(8rem,14vw,16rem);font-weight:300;font-style:italic;color:rgba(255,255,255,.12);line-height:1;bottom:2rem;right:-1rem;user-select:none;pointer-events:none}
.hero-badge{position:absolute;z-index:3;top:50%;left:50%;transform:translate(-50%,-50%);width:220px;height:220px;border-radius:50%;border:1px solid rgba(255,255,255,.4);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:.4rem;background:rgba(255,255,255,.08);backdrop-filter:blur(4px)}
.hero-badge-label{font-size:.6rem;letter-spacing:.3em;text-transform:uppercase;color:rgba(255,255,255,.7)}
.hero-badge-name{font-family:'Cormorant Garamond',serif;font-size:1.6rem;font-style:italic;color:#fff;line-height:1.2}
.hero-badge-sub{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-top:.2rem}
.hero-scroll{position:absolute;bottom:2.5rem;left:6rem;display:flex;align-items:center;gap:.8rem;font-size:.6rem;letter-spacing:.25em;text-transform:uppercase;color:var(--muted);animation:float 3s ease-in-out infinite}
.hero-scroll::before{content:'';display:block;width:1px;height:40px;background:linear-gradient(to bottom,transparent,var(--gold));animation:grow 3s ease-in-out infinite}

@media(max-width:768px){
  .nav-link{
    display:none;
  }
}
@media(max-width:768px){

  nav{
    padding:1rem 1.5rem;
  }

  .nav-cta{
    padding:.4rem 1rem;
    font-size:.65rem;
  }

}
/* ── DIVIDER ── */
.divider{text-align:center;padding:3rem 2rem;font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-style:italic;color:var(--gold-light);letter-spacing:.05em}

/* ── SECTION HELPERS ── */
.section-tag{font-size:.62rem;letter-spacing:.35em;text-transform:uppercase;color:var(--gold);margin-bottom:1.2rem;display:flex;align-items:center;gap:.8rem}
.section-tag::before{content:'';width:30px;height:1px;background:var(--gold);display:block}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2rem,3.5vw,3.2rem);line-height:1.15;font-weight:300;color:var(--deep);margin-bottom:1.8rem}
.section-title em{font-style:italic;color:var(--rose)}
.section-text{font-size:.95rem;line-height:1.95;color:var(--muted);margin-bottom:1.4rem}
.text-center{text-align:center}
.mt-lg{margin-top:4rem}
.mt-md{margin-top:2.5rem}
.mt-sm{margin-top:.5rem}

/* ── WHAT IS ── */
.what{padding:6rem;display:grid;grid-template-columns:1fr 1.2fr;gap:6rem;align-items:center}
.what-card{background:linear-gradient(135deg,#fff 0%,var(--cream) 100%);border:1px solid rgba(184,154,114,.25);padding:3rem;position:relative}
.what-card::before{content:'';position:absolute;top:-1px;left:3rem;width:60px;height:3px;background:var(--gold)}
.what-card-title{font-family:'Cormorant Garamond',serif;font-size:1.4rem;font-weight:400;color:var(--deep);margin-bottom:1.5rem}
.benefit-list{list-style:none;display:flex;flex-direction:column;gap:1rem}
.benefit-list li{display:flex;gap:1rem;align-items:flex-start;font-size:.88rem;line-height:1.7;color:var(--text)}
.benefit-list li::before{content:'✦';color:var(--gold);flex-shrink:0;margin-top:.1rem;font-size:.7rem}

/* ── ANATOMY ── */
.anatomy{padding:7rem 6rem;background:var(--cream);border-top:1px solid rgba(184,154,114,.2)}
.anatomy-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:6rem;align-items:center}
.anatomy-image-wrap img{width:100%;border:1px solid rgba(184,154,114,.2)}
.anatomy-steps{display:flex;flex-direction:column;gap:0;margin-top:2rem}
.anatomy-step{display:flex;gap:1.2rem;align-items:flex-start;padding:1.2rem 0;border-bottom:1px solid rgba(184,154,114,.15)}
.anatomy-step:last-child{border-bottom:none}
.anatomy-step-num{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:300;color:var(--gold);opacity:.6;line-height:1;flex-shrink:0;min-width:2rem}
.anatomy-step-body{font-size:.88rem;line-height:1.75;color:var(--text)}
.anatomy-step-body strong{color:var(--deep);font-weight:500;display:block;margin-bottom:.2rem}
.anatomy-caption{margin-top:.8rem;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);text-align:center}

/* ── DIFFERENTIALS ── */
.differentials{background:var(--deep);padding:7rem 6rem;position:relative;overflow:hidden}
.differentials::before{content:'HD';position:absolute;right:-2rem;top:50%;transform:translateY(-50%);font-family:'Cormorant Garamond',serif;font-size:28vw;font-weight:300;font-style:italic;color:rgba(255,255,255,.03);user-select:none;line-height:1;pointer-events:none}
.diff-header{margin-bottom:4rem}
.diff-header .section-tag{color:var(--gold-light)}
.diff-header .section-tag::before{background:var(--gold-light)}
.diff-header .section-title{color:var(--cream)}
.diff-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px}
.diff-item{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.06);padding:2.5rem 2rem;transition:background var(--t)}
.diff-item:hover{background:rgba(255,255,255,.07)}
.diff-number{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:300;color:var(--gold);opacity:.5;line-height:1;margin-bottom:1rem}
.diff-title{font-size:.8rem;letter-spacing:.18em;text-transform:uppercase;color:var(--cream);margin-bottom:.8rem;font-weight:500}
.diff-text{font-size:.85rem;line-height:1.85;color:rgba(255,255,255,.45)}

/* ── AUTHORITY ── */
.authority{padding:7rem 6rem;display:grid;grid-template-columns:1.1fr 1fr;gap:6rem;align-items:center}
.authority-bg{aspect-ratio:3/4;max-height:560px;display:flex;align-items:flex-end;justify-content:flex-start;padding:2.5rem;position:relative;overflow:hidden}
.authority-bg img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top}
.authority-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(61,43,37,.75) 0%,rgba(61,43,37,.1) 55%,transparent 100%)}
.authority-nameplate{background:rgba(250,247,242,.95);padding:1.5rem 2rem;position:relative;z-index:2}
.authority-nameplate-name{font-family:'Cormorant Garamond',serif;font-size:1.4rem;color:var(--deep);font-weight:400}
.authority-nameplate-title{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);margin-top:.3rem}
.authority-float{position:absolute;top:-1.5rem;right:-1.5rem;background:var(--deep);color:var(--cream);padding:1.5rem;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;writing-mode:vertical-rl;text-orientation:mixed}
.credentials{display:flex;flex-direction:column;gap:1.5rem;margin-top:2.5rem}
.credential-item{display:flex;gap:1.2rem;align-items:flex-start;padding-bottom:1.5rem;border-bottom:1px solid rgba(184,154,114,.2)}
.credential-item:last-child{border-bottom:none}
.credential-icon{width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,var(--blush),var(--rose));display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.9rem}
.credential-text{font-size:.88rem;line-height:1.7;color:var(--text)}
.credential-text strong{color:var(--deep);font-weight:500;display:block;margin-bottom:.15rem}

/* ── STEPS ── */
.steps{background:var(--cream);border-top:1px solid rgba(184,154,114,.2);padding:7rem 6rem}
.steps-header{text-align:center;margin-bottom:5rem}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.steps-grid::before{content:'';position:absolute;top:2rem;left:calc(12.5% + 1.5rem);right:calc(12.5% + 1.5rem);height:1px;background:linear-gradient(to right,var(--gold),var(--blush),var(--gold))}
.step-item{padding:0 1.5rem;text-align:center}
.step-dot{width:4rem;height:4rem;border-radius:50%;background:var(--cream);border:1px solid var(--gold);display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-family:'Cormorant Garamond',serif;font-size:1.3rem;color:var(--gold);position:relative;z-index:1}
.step-label{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--rose);margin-bottom:.5rem;font-weight:500}
.step-text{font-size:.85rem;line-height:1.75;color:var(--muted)}

/* MOBILE */
@media(max-width:768px){
  .steps-grid{
    grid-template-columns:1fr !important;
  }
}

/* ── GALLERY ── */
.gallery{padding:0;background:var(--deep);overflow:hidden}
.gallery-inner{display:grid;grid-template-columns:repeat(4,1fr);gap:3px}
.gallery-cell{position:relative;overflow:hidden;aspect-ratio:3/4;cursor:pointer}
.gallery-cell img{width:100%;height:100%;object-fit:cover;object-position:center top;transition:transform .7s ease}
.gallery-cell:hover img{transform:scale(1.06)}
.gallery-cell::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(61,43,37,.55) 0%,transparent 50%);opacity:0;transition:opacity .4s;pointer-events:none}
.gallery-cell:hover::after{opacity:1}
.gallery-label{position:absolute;bottom:1.4rem;left:1.4rem;font-family:'Cormorant Garamond',serif;font-size:.95rem;font-style:italic;color:transparent;transition:color .4s;z-index:2}
.gallery-cell:hover .gallery-label{color:rgba(255,255,255,.85)}

/* ── LOCATION ── */
.location{padding:7rem 6rem;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start;background:var(--cream);border-top:1px solid rgba(184,154,114,.2)}
.location-info{display:flex;flex-direction:column;gap:2rem}
.location-item{display:flex;gap:1.2rem;align-items:flex-start}
.location-icon{width:42px;height:42px;flex-shrink:0;border:1px solid var(--gold);display:flex;align-items:center;justify-content:center;font-size:1rem;color:var(--gold)}
.location-item-title{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem;font-weight:500}
.location-item-text{font-size:.9rem;line-height:1.75;color:var(--text)}
.location-item-text strong{color:var(--deep);display:block;font-weight:500}
.location-map{position:relative;overflow:hidden;border:1px solid rgba(184,154,114,.25)}
.location-map::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(to right,var(--gold),var(--rose));z-index:2}
.location-map iframe{width:100%;height:420px;border:none;display:block}
.location-cta{margin-top:.5rem;display:inline-flex;align-items:center;gap:.7rem;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);border-bottom:1px solid transparent;transition:border-color var(--t)}
.location-cta:hover{border-color:var(--gold)}

/* ── RESULTS ── */
.results{background:var(--deep);padding:7rem 6rem;position:relative;overflow:hidden}
.results::before{content:'Antes · Depois';position:absolute;right:-1rem;top:50%;transform:translateY(-50%);font-family:'Cormorant Garamond',serif;font-size:14vw;font-weight:300;font-style:italic;color:rgba(255,255,255,.03);user-select:none;line-height:1;white-space:nowrap;pointer-events:none}
.results-inner{display:grid;grid-template-columns:1fr 1.4fr;gap:5rem;align-items:center;position:relative;z-index:1}
.results-text .section-tag{color:var(--gold-light)}
.results-text .section-tag::before{background:var(--gold-light)}
.results-text .section-title{color:var(--cream)}
.results-text .section-text{color:rgba(255,255,255,.5)}
.results-disclaimer{margin-top:1.5rem;font-size:.68rem;letter-spacing:.12em;color:rgba(255,255,255,.25);line-height:1.7;border-top:1px solid rgba(255,255,255,.08);padding-top:1.2rem}
.results-image-wrap{position:relative}
.results-image-wrap img{width:100%;border:1px solid rgba(255,255,255,.08)}
.results-badge{position:absolute;bottom:-1px;left:0;right:0;background:rgba(61,43,37,.92);padding:1rem 1.8rem;display:flex;justify-content:space-between;align-items:center;border-top:1px solid rgba(184,154,114,.2)}
.results-badge-text{font-family:'Cormorant Garamond',serif;font-size:.95rem;font-style:italic;color:var(--cream)}
.results-badge-tag{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold)}

/* ── TESTIMONIALS ── */
.testimonials{background:var(--cream);border-top:1px solid rgba(184,154,114,.15);padding:7rem 6rem;position:relative;overflow:hidden}
.testimonials::before{content:'❝';position:absolute;left:4rem;top:4rem;font-family:'Cormorant Garamond',serif;font-size:14rem;line-height:1;color:rgba(196,128,106,.07);user-select:none;pointer-events:none}
.testimonials-header{text-align:center;margin-bottom:4rem}
.text-testimonials{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:1rem}
.text-card{border:1px solid rgba(184,154,114,.2);padding:2rem;position:relative;background:#fff;transition:border-color var(--t)}
.text-card:hover{border-color:var(--gold)}
.text-card::before{content:'❝';font-family:'Cormorant Garamond',serif;font-size:2.5rem;color:var(--blush);line-height:1;display:block;margin-bottom:.5rem}
.text-card-body{font-size:.85rem;line-height:1.85;color:var(--muted);font-style:italic;margin-bottom:1.2rem}
.text-card-name{font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--rose);font-style:normal;font-weight:500}
.text-card-stars{color:var(--gold);font-size:.65rem;margin-top:.3rem}

/* ── CTA SECTION ── */
.cta-section{background:linear-gradient(135deg,#3d2b25 0%,#5a3f36 50%,#3d2b25 100%);padding:8rem 6rem;text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 50% 0%,rgba(196,128,106,.2) 0%,transparent 60%);pointer-events:none}
.cta-eyebrow{font-size:.65rem;letter-spacing:.4em;text-transform:uppercase;color:var(--gold-light);margin-bottom:1.5rem}
.cta-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2.5rem,4.5vw,5rem);font-weight:300;color:var(--cream);line-height:1.1;margin-bottom:1.5rem;position:relative}
.cta-title em{font-style:italic;color:var(--blush)}
.cta-text{font-size:.9rem;line-height:1.9;color:rgba(255,255,255,.5);max-width:500px;margin:0 auto 3rem}
.cta-note{margin-top:1.5rem;font-size:.72rem;letter-spacing:.15em;color:rgba(255,255,255,.3);text-transform:uppercase}

/* ── FAQ ── */
.faq{padding:7rem 6rem}
.faq-header{text-align:center;margin-bottom:4rem}
.faq-list{max-width:760px;margin:0 auto}
.faq-item{border-bottom:1px solid rgba(184,154,114,.2);overflow:hidden}
.faq-question{width:100%;text-align:left;padding:1.6rem 0;background:none;border:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-family:'Jost',sans-serif;font-size:.95rem;color:var(--deep);font-weight:400}
.faq-icon{font-size:1.2rem;color:var(--gold);transition:transform var(--t);flex-shrink:0}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-answer p{padding-bottom:1.5rem;font-size:.88rem;line-height:1.85;color:var(--muted)}
.faq-item.open .faq-icon{transform:rotate(45deg)}
.faq-item.open .faq-answer{max-height:300px}

/* ── FOOTER ── */
footer{background:var(--deep);padding:3rem 6rem;display:flex;align-items:center;justify-content:space-between}
.footer-brand{font-family:'Cormorant Garamond',serif;font-size:.95rem;color:var(--cream);font-weight:400;letter-spacing:.15em}
.footer-links{display:flex;gap:2rem}
.footer-links a{font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.35);transition:color var(--t)}
.footer-links a:hover{color:var(--gold)}
.footer-copy{font-size:.65rem;color:rgba(255,255,255,.2);letter-spacing:.1em}

/* ══════════════════════════════════════════════════
   FORMULÁRIO MULTI-STEP — DESIGN PREMIUM
   ══════════════════════════════════════════════════ */

/* ── Overlay ── */
.form-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(43, 28, 22, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.form-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Card container ── */
.form-card {
  background: #fefcf9;
  border-radius: 4px;
  box-shadow:
    0 2px 8px rgba(61,43,37,.06),
    0 12px 40px rgba(61,43,37,.18),
    0 40px 80px rgba(61,43,37,.14);
  width: 100%;
  max-width: 520px;
  position: relative;
  /* CRITICAL: auto height — never fixed */
  height: auto;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* Thin scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--blush) transparent;
}
.form-card::-webkit-scrollbar { width: 4px; }
.form-card::-webkit-scrollbar-track { background: transparent; }
.form-card::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 2px; }

/* ── Progress bar ── */
.fcard-progress {
  height: 2px;
  background: rgba(184,154,114,.18);
  position: sticky;
  top: 0;
  z-index: 5;
  border-radius: 0 0 2px 2px;
  overflow: hidden;
}
.fcard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.45s cubic-bezier(.4,0,.2,1);
  width: 0%;
}

/* ── Close button ── */
.fcard-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(61,43,37,.07);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}
.fcard-close:hover {
  background: rgba(61,43,37,.14);
  color: var(--deep);
}

/* ── Inner padding wrapper ── */
.fcard-body {
  padding: 2.8rem 2.8rem 2.5rem;
}

/* ── Steps wrapper — single display logic ── */
.fcard-steps {
  position: relative;
}

/* Each step */
.fstep {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fstep.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
/* Entering animation trigger */
.fstep.entering {
  display: block;
  opacity: 0;
  transform: translateY(10px);
}

/* ── Step counter tag ── */
.fstep-tag {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.fstep-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Welcome screen ── */
.fstep-welcome-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
}

/* ── Question title ── */
.fstep-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep);
  margin-bottom: .75rem;
}

/* ── Subtitle / hint ── */
.fstep-sub {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

/* ── Text inputs ── */
.fstep-label {
  display: block;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .55rem;
  font-weight: 500;
}
.fstep-input {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1.5px solid rgba(184,154,114,.3);
  border-radius: 2px;
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  color: var(--deep);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1.6rem;
}
.fstep-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,128,106,.1);
}
.fstep-input::placeholder { color: rgba(158,136,128,.55); }

/* ── Options list ── */
.fstep-options {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.8rem;
}
.fstep-option {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1.1rem;
  border: 1.5px solid rgba(184,154,114,.25);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  font-size: .875rem;
  color: var(--text);
  line-height: 1.45;
  user-select: none;
  -webkit-user-select: none;
}
.fstep-option:hover {
  border-color: rgba(196,128,106,.5);
  background: rgba(196,128,106,.04);
}
.fstep-option.selected {
  border-color: var(--rose);
  background: rgba(196,128,106,.07);
  box-shadow: inset 3px 0 0 var(--rose);
}
/* Custom checkbox/radio visuals */
.fstep-option .foption-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,154,114,.5);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.fstep-option.selected .foption-mark {
  border-color: var(--rose);
  background: var(--rose);
}
.fstep-option .foption-mark::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.fstep-option.selected .foption-mark::after { opacity: 1; }
/* Hide native inputs */
.fstep-option input[type="radio"],
.fstep-option input[type="checkbox"] {
  display: none;
}
/* Multi-select: square mark */
.fstep-options[data-type="multiple"] .foption-mark {
  border-radius: 2px;
}
.fstep-options[data-type="multiple"] .fstep-option.selected .foption-mark::after {
  content: '✓';
  font-size: .65rem;
  font-weight: 700;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  color: #fff;
  opacity: 1;
}

/* ── Actions row ── */
.fstep-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: .5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184,154,114,.15);
}

/* Back button */
.fbtn-back {
  background: transparent;
  border: 1.5px solid rgba(184,154,114,.35);
  border-radius: 2px;
  padding: .75rem 1.5rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.fbtn-back:hover { border-color: var(--gold); color: var(--gold); }

/* Next / Submit button */
.fbtn-next,
.fbtn-submit {
  background: var(--rose);
  border: none;
  border-radius: 2px;
  padding: .85rem 2rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background 0.25s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.fbtn-next::after,
.fbtn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.fbtn-next:hover,
.fbtn-submit:hover { background: var(--deep); transform: translateY(-1px); }
.fbtn-next:hover::after,
.fbtn-submit:hover::after { opacity: 1; }

/* Start button (welcome screen — wider) */
.fbtn-start {
  background: var(--rose);
  border: none;
  border-radius: 2px;
  padding: 1rem 2.8rem;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #fff;
  margin-top: .4rem;
  transition: background 0.25s, transform 0.15s;
}
.fbtn-start:hover { background: var(--deep); transform: translateY(-1px); }

/* ── ENDING SCREENS (A & B) ── */
.fending {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0 0.5rem;
  /* CRITICAL: no fixed height, let content breathe */
  height: auto;
}

.fending-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 1.6rem;
  flex-shrink: 0;
}
.fending-badge--success {
  background: linear-gradient(135deg, rgba(196,128,106,.15), rgba(184,154,114,.2));
  border: 1.5px solid rgba(196,128,106,.35);
}
.fending-badge--neutral {
  background: linear-gradient(135deg, rgba(184,154,114,.12), rgba(158,136,128,.15));
  border: 1.5px solid rgba(184,154,114,.25);
}

.fending-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: .8rem;
  line-height: 1.2;
}

.fending-text {
  font-size: .875rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto 2rem;
}

.fending-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
}

/* WhatsApp CTA on Ending A */
.fending-wa {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 1rem 2.4rem;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.15s;
  margin-bottom: .8rem;
}
.fending-wa:hover { background: var(--deep); transform: translateY(-1px); }
.fending-wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

.fending-note {
  font-size: .7rem;
  color: rgba(158,136,128,.6);
  letter-spacing: .08em;
  margin-top: .4rem;
}

/* Ending B Instagram link */
.fending-ig {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1.5px solid rgba(184,154,114,.4);
  border-radius: 2px;
  padding: .85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.fending-ig:hover {
  border-color: var(--gold);
  background: rgba(184,154,114,.07);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .fcard-body { padding: 2rem 1.5rem 1.8rem; }
  .fstep-title { font-size: 1.45rem; }
  .fending-title { font-size: 1.65rem; }
  .fending-wa { padding: .95rem 1.8rem; }
}

/* ── INSTAGRAM STRIP ── */
.ig-strip {
  background: var(--deep);
  border-top: 1px solid rgba(184,154,114,.15);
  padding: 3.5rem 6rem;
}
.ig-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.ig-strip-left {
  flex-shrink: 0;
}
.ig-strip-tag {
  font-size: .58rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ig-strip-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.ig-strip-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .02em;
  white-space: nowrap;
}
.ig-strip-desc {
  flex: 1;
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255,255,255,.38);
  min-width: 0;
}
.ig-strip-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid rgba(184,154,114,.35);
  color: var(--gold-light);
  padding: .75rem 1.6rem;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color var(--t), color var(--t), background var(--t);
  white-space: nowrap;
}
.ig-strip-link:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(184,154,114,.08);
}
@media (max-width: 1024px) {
  .ig-strip { padding: 3rem 2rem; }
  .ig-strip-inner { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .ig-strip-handle { font-size: 1.3rem; }
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float{position:fixed;bottom:2rem;right:2rem;z-index:9999;width:60px;height:60px;border-radius:50%;background:var(--rose);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 24px rgba(196,128,106,.45);transition:transform var(--t),box-shadow var(--t);animation:waPulse 2.5s ease-in-out infinite}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 10px 32px rgba(196,128,106,.6)}
.whatsapp-float svg{width:32px;height:32px;fill:#fff}

/* ── ANIMATIONS ── */
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}
@keyframes grow{0%,100%{opacity:.4}50%{opacity:1}}
@keyframes waPulse{0%,100%{box-shadow:0 6px 24px rgba(196,128,106,.45)}50%{box-shadow:0 6px 32px rgba(196,128,106,.75),0 0 0 10px rgba(196,128,106,.1)}}
.fade-up{opacity:0;transform:translateY(30px);transition:opacity .8s ease,transform .8s ease}
.fade-up.visible{opacity:1;transform:translateY(0)}
.fade-up:nth-child(2){transition-delay:.1s}
.fade-up:nth-child(3){transition-delay:.2s}
.fade-up:nth-child(4){transition-delay:.3s}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  nav{padding:1.2rem 2rem}
  .hero{grid-template-columns:1fr}
  .hero-left{padding:7rem 2rem 4rem}
  .hero-right{min-height:380px}
  .hero-scroll{left:2rem}
  .what,.authority{grid-template-columns:1fr;gap:3rem;padding:4rem 2rem}
  .anatomy{padding:5rem 2rem}
  .anatomy-inner{grid-template-columns:1fr;gap:3rem}
  .differentials{padding:5rem 2rem}
  .diff-grid{grid-template-columns:1fr;gap:2px}
  .steps{padding:5rem 2rem}
  .steps-grid{grid-template-columns:repeat(2,1fr);gap:3rem}
  .steps-grid::before{display:none}
  .gallery-inner{grid-template-columns:repeat(2,1fr)}
  .location{grid-template-columns:1fr;padding:5rem 2rem;gap:3rem}
  .location-map iframe{height:300px}
  .results{padding:5rem 2rem}
  .results-inner{grid-template-columns:1fr;gap:3rem}
  .cta-section{padding:6rem 2rem}
  .testimonials{padding:5rem 2rem}
  .text-testimonials{grid-template-columns:1fr}
  .faq{padding:5rem 2rem}
  footer{flex-direction:column;gap:1.5rem;text-align:center;padding:2rem}
  .footer-links{flex-wrap:wrap;justify-content:center}
}
