/* ============================================================
   DESIGN TOKENS & RESET
============================================================ */
:root {
  --off-white: #F7F4F0;
  --nude:      #E8D8C8;
  --nude-mid:  #D4B89A;
  --champagne: #C9A96E;
  --gold:      #A8824A;
  --gold-dark: #7A5C2E;
  --black:     #1A1714;
  --black-mid: #2E2A26;
  --gray:      #6B6560;
  --gray-lt:   #9A948E;
  --line:      rgba(168,130,74,0.18);
  --line-dark: rgba(168,130,74,0.35);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --r-sm:  0.5rem;
  --r-md:  1rem;
  --r-lg:  2rem;
  --r-pill:100px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.64, 0, 0.78, 0);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--off-white) !important;
  color: var(--black) !important;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY SYSTEM
============================================================ */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.t-serif { font-family: var(--font-display); }
.t-gold   { color: var(--gold); }
.t-gray   { color: var(--gray); }

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
  width: min(90%, 1160px);
  margin-inline: auto;
}
.container--narrow { width: min(90%, 760px); margin-inline: auto; }

section { padding-block: clamp(4rem, 10vw, 8rem); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #fff;
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(168,130,74,0.28);
}
.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #fff;
}
.btn--dark {
  background: var(--black);
  color: var(--off-white);
}
.btn--dark:hover {
  background: var(--black-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(26,23,20,0.22);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all 0.4s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(247,244,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--black);
}
.nav-logo .sub {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--black);
  transition: all 0.3s var(--ease-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--off-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ============================================================
   SECTION 1 — HERO
============================================================ */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
}

/* Background ornament */
#hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 110%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,169,110,0.07) 0%, transparent 70%),
              radial-gradient(ellipse at 30% 80%, rgba(232,216,200,0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168,130,74,0.08);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-pill);
  padding: 0.4rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-title .line-indent {
  display: block;
  padding-left: clamp(2rem, 8%, 5rem);
}

.hero-desc {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--gray);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatars .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--off-white);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--nude-mid), var(--gold));
}
.hero-proof-avatars .av:first-child { margin-left: 0; }
.hero-proof-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
}
.hero-proof-text span {
  font-size: 0.72rem;
  color: var(--gray-lt);
}
.hero-proof-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.05em; }

/* Hero visual (CSS-only) */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 4%;
}
.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
}
.hero-card-main {
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 60px 12px;
  overflow: hidden;
  background: linear-gradient(160deg,
    var(--nude) 0%,
    var(--nude-mid) 40%,
    #C4956A 70%,
    var(--gold-dark) 100%
  );
}
/* Decorative face silhouette shape */
.hero-card-main::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 68%;
  height: 80%;
  background: rgba(255,255,255,0.07);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}
.hero-card-main::after {
  content: '';
  position: absolute;
  top: 12%; left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 34%;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
/* Floating stat card */
.hero-stat-card {
  position: absolute;
  bottom: 6%;
  left: -14%;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 1rem 1.4rem;
  box-shadow: 0 16px 48px rgba(26,23,20,0.1);
  min-width: 155px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-stat-card .big-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-card .label {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
/* Floating star card */
.hero-star-card {
  position: absolute;
  top: 10%;
  right: -8%;
  background: var(--black);
  border-radius: var(--r-md);
  padding: 0.8rem 1.2rem;
  box-shadow: 0 12px 40px rgba(26,23,20,0.2);
  animation: floatCard 5s ease-in-out infinite 1.5s;
}
.hero-star-card .stars { color: var(--champagne); font-size: 0.8rem; letter-spacing: 0.1em; }
.hero-star-card .rating {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--off-white);
  font-weight: 300;
  line-height: 1;
  margin-top: 2px;
}
.hero-star-card .sub {
  font-size: 0.65rem;
  color: var(--gray-lt);
}
/* Circle ornament */
.hero-circle {
  position: absolute;
  top: -8%;
  right: -6%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  opacity: 0.5;
}
.hero-circle-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,130,74,0.15), transparent);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   SECTION 2 — SOBRE
============================================================ */
#sobre {
  background: var(--black);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(168,130,74,0.07), transparent 70%);
  pointer-events: none;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.sobre-left .section-tag { color: var(--champagne); }
.sobre-left .section-tag::before { background: var(--champagne); }
.sobre-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--off-white);
}
.sobre-title em { font-style: italic; color: var(--champagne); }
.sobre-body {
  font-size: 0.92rem;
  color: rgba(247,244,240,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 3rem;
}
.sobre-stat {
  background: rgba(255,255,255,0.03);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.sobre-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--champagne);
  display: block;
}
.sobre-stat .desc {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,240,0.45);
  margin-top: 4px;
}
/* Visual element right side */
.sobre-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.sobre-visual-main {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 80px;
  background: linear-gradient(145deg,
    rgba(201,169,110,0.12) 0%,
    rgba(168,130,74,0.06) 100%
  );
  border: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Decorative SVG ornament inside */
.sobre-ornament {
  width: 70%;
  opacity: 0.15;
}
.sobre-tag-pill {
  position: absolute;
  bottom: -1.5rem;
  right: 5%;
  background: var(--gold);
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 40px rgba(168,130,74,0.35);
}

/* ============================================================
   SECTION 3 — DIFERENCIAIS
============================================================ */
#diferenciais { background: var(--off-white); }
.diferenciais-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.diferenciais-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.diferenciais-title em { font-style: italic; color: var(--gold); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.dif-card {
  background: var(--off-white);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  transition: background 0.3s var(--ease-out);
  position: relative;
}
.dif-card:hover { background: #F0EBE4; }
.dif-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.dif-icon svg { width: 20px; height: 20px; }
.dif-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.dif-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   SECTION 4 — PROCEDIMENTOS
============================================================ */
#procedimentos {
  background: #F0EBE4;
}
.proc-header { margin-bottom: 3.5rem; }
.proc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 520px;
}
.proc-title em { font-style: italic; color: var(--gold); }
.proc-subtitle {
  font-size: 0.88rem;
  color: var(--gray);
  margin-top: 1rem;
  max-width: 440px;
}
.proc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.proc-card {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.3s var(--ease-out);
  cursor: default;
}
.proc-card:hover {
  border-color: var(--champagne);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168,130,74,0.1);
}
.proc-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--nude-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.proc-content .proc-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}
.proc-content .proc-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
}
.proc-tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(168,130,74,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
}

/* ============================================================
   SECTION 5 — RESULTADOS
============================================================ */
#resultados {
  background: var(--off-white);
  text-align: center;
}
.resultados-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.resultados-title em { font-style: italic; color: var(--gold); }
.resultados-sub {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 3.5rem;
}
.resultados-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}
.res-item {
  background: var(--off-white);
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.res-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.res-item:hover::after { opacity: 1; }
.res-item .big {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.res-item .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
/* Transformation visual */
.transformacao-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.transf-panel {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.transf-panel.before {
  background: linear-gradient(160deg, #C8B8A4, #A89080);
}
.transf-panel.after {
  background: linear-gradient(160deg, var(--nude-mid), var(--gold));
}
.transf-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.35), transparent 60%);
}
.transf-label {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.transf-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.2rem;
}

/* ============================================================
   SECTION 6 — DEPOIMENTOS
============================================================ */
#depoimentos { background: #F0EBE4; }
.dep-header { margin-bottom: 3rem; }
.dep-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
}
.dep-title em { font-style: italic; color: var(--gold); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.dep-card {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s var(--ease-out);
}
.dep-card:hover {
  border-color: var(--champagne);
  box-shadow: 0 8px 32px rgba(168,130,74,0.1);
}
.dep-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; }
.dep-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--black);
  flex: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.dep-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--nude-mid), var(--gold));
}
.dep-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
}
.dep-proc {
  font-size: 0.7rem;
  color: var(--gray-lt);
  letter-spacing: 0.05em;
}
.dep-featured {
  background: var(--black);
  border-color: transparent;
  grid-column: span 1;
}
.dep-featured .dep-quote { color: var(--off-white); }
.dep-featured .dep-stars { color: var(--champagne); }
.dep-featured .dep-name { color: var(--off-white); }
.dep-featured .dep-proc { color: var(--gray-lt); }
.dep-featured .dep-author { border-top-color: rgba(255,255,255,0.1); }
.dep-featured .dep-avatar { background: linear-gradient(135deg, var(--champagne), var(--gold)); }

/* ============================================================
   SECTION 7 — PROCESSO
============================================================ */
#processo { background: var(--off-white); }
.proc-step-header { max-width: 540px; margin-bottom: 4rem; }
.proc-step-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
}
.proc-step-title em { font-style: italic; color: var(--gold); }
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Horizontal connector line */
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(to right, var(--nude-mid), var(--gold), var(--nude-mid));
  z-index: 0;
}
.step {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  transition: all 0.3s var(--ease-out);
}
.step:hover .step-dot {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.step-text {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   SECTION 8 — FAQ
============================================================ */
#faq {
  background: #F0EBE4;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.faq-left { position: sticky; top: 6rem; }
.faq-left-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.faq-left-title em { font-style: italic; color: var(--gold); }
.faq-left-sub {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
  font-size: 1rem;
  color: var(--gold);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.75;
  padding-bottom: 1.4rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   SECTION 9 — CTA FINAL
============================================================ */
#cta-final {
  background: var(--black);
  color: var(--off-white);
  text-align: center;
  padding-block: clamp(5rem, 12vw, 10rem);
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,130,74,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-tag { color: var(--champagne); }
.cta-final-tag::before { background: var(--champagne); }
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.cta-final-title em { font-style: italic; color: var(--champagne); }
.cta-final-sub {
  font-size: 0.95rem;
  color: rgba(247,244,240,0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}
.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-note {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: rgba(247,244,240,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--black-mid);
  padding-block: 3rem;
  color: rgba(247,244,240,0.45);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo .wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--off-white);
  letter-spacing: 0.08em;
}
.footer-logo .sub {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,240,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--off-white); }
.footer-copy { font-size: 0.72rem; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
#wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.wa-label {
  background: var(--black);
  color: var(--off-white);
  font-size: 0.72rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}
#wa-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}
.wa-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease-out);
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.wa-btn svg { width: 26px; height: 26px; fill: #fff; }
.wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   HERO ENTRANCE ANIMATIONS
============================================================ */
.hero-badge    { animation: fadeUp 0.7s var(--ease-out) 0.2s both; }
.hero-title    { animation: fadeUp 0.7s var(--ease-out) 0.35s both; }
.hero-desc     { animation: fadeUp 0.7s var(--ease-out) 0.5s both; }
.hero-actions  { animation: fadeUp 0.7s var(--ease-out) 0.62s both; }
.hero-proof    { animation: fadeUp 0.7s var(--ease-out) 0.75s both; }
.hero-right    { animation: fadeIn 0.9s var(--ease-out) 0.4s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (768px)
============================================================ */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-right { justify-content: center; margin-top: 3rem; }
  .hero-visual-wrap { max-width: 360px; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { display: none; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .dep-grid { grid-template-columns: 1fr 1fr; }
  .dep-featured { grid-column: span 2; }
  .steps-wrap { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-wrap::before { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .resultados-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn--outline { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .proc-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .dep-featured { grid-column: span 1; }
  .steps-wrap { grid-template-columns: 1fr 1fr; }
  .sobre-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-wrap { grid-template-columns: 1fr; }
  .transformacao-wrap { grid-template-columns: 1fr; gap: 0.8rem; }
  .transf-arrow { display: none; }
  .resultados-strip { grid-template-columns: 1fr 1fr; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .cta-final-actions { flex-direction: column; align-items: stretch; }
  .cta-final-actions .btn { justify-content: center; }
}
