/* ============================================================================
   FLOWERS ACADEMY — Folha de estilos principal
   Organização: fontes locais → tokens → reset → utilitários → seções
   ============================================================================ */


/* ── 00 · FONTES LOCAIS (WOFF2 — suportado por todos browsers desde ~2020) ── */
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 300;
  src: url('../fonts/Poppins-Light.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 400;
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 500;
  src: url('../fonts/Poppins-Medium.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 700;
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins'; font-style: italic; font-weight: 400;
  src: url('../fonts/Poppins-Italic.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Lora'; font-style: normal; font-weight: 400 700;
  src: url('../fonts/Lora-Variable.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Lora'; font-style: italic; font-weight: 400 700;
  src: url('../fonts/Lora-Italic-Variable.woff2') format('woff2');
  font-display: swap;
}


/* ── 01 · DESIGN TOKENS ───────────────────────────────────────────────────── */
:root {
  --forest:        #1b3827;
  --forest2:       #244d38;
  --gold:          #c4965a;
  --gold-lt:       #d9b06e;
  --gold-xl:       #eedba8;
  --cream:         #f7f3ec;
  --cream2:        #ede8de;
  --text:          #2e2820;
  --soft:          #6b5f50;
  --white:         #ffffff;
  --nav-h:         72px;
  --r:             3px;
  --sh:            0 2px 20px rgba(27,56,39,.08);
  --sh-lg:         0 12px 40px rgba(27,56,39,.13);
  --line:          rgba(196,150,90,.18);
  --line-stronger: rgba(196,150,90,.4);
}


/* ── 02 · RESET / BASE ────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main         { display: block; }
a            { color: inherit; text-decoration: none; }
ul           { list-style: none; }
img,svg      { display: block; max-width: 100%; }
button       { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 2px;
  border-radius: var(--r);
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ── 03 · UTILITÁRIOS ─────────────────────────────────────────────────────── */
.lora      { font-family: 'Lora', Georgia, serif; }
.wrap      { width: min(1120px, 92%); margin-inline: auto; }
.eyebrow   { display: block; font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.gold-rule { display: block; width: 48px; height: 1px; background: var(--gold); margin: 14px auto; }

.svg-sprite { display: none; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ============================================================================
   04 · NAVIGATION
   ============================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(27,56,39,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.25); }

.nav-in {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  width: min(1200px, 94%);
  margin-inline: auto;
}

.nav-logo            { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img        { height: 60px; width: auto; }

.nav-links           { display: flex; align-items: center; gap: 2px; }
.nav-links a,
.nav-links button {
  font-size: 12px; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 8px 13px;
  border-radius: var(--r);
  background: none; border: none; cursor: pointer;
  transition: color .2s, background .2s;
  white-space: nowrap;
  position: relative;
}
.nav-links a:hover,
.nav-links button:hover { color: #fff; background: rgba(255,255,255,.07); }

/* Dropdown de cursos */
.ndrop                  { position: relative; }
.ndrop-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--forest);
  border: 1px solid rgba(196,150,90,.22);
  border-radius: 0 0 var(--r) var(--r);
  min-width: 270px;
  padding: 12px 0 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  z-index: 10;
}
.ndrop:hover .ndrop-menu,
.ndrop:focus-within .ndrop-menu,
.ndrop.is-open .ndrop-menu { display: block; }
.ndrop-menu::before        { content: ""; display: block; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.ndrop:hover .arr,
.ndrop.is-open .arr        { transform: rotate(180deg); }
.ndrop-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: background .15s, color .15s;
}
.ndrop-menu a:hover { background: rgba(196,150,90,.12); color: var(--gold-lt); }
.ndrop-menu .div    { height: 1px; background: rgba(196,150,90,.15); margin: 6px 14px; }
.arr                { font-size: 8px; margin-left: 3px; display: inline-block; transition: transform .2s; }

/* Link de volta ao site principal */
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid var(--line-stronger);
  padding: 7px 14px;
  border-radius: var(--r);
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.nav-back:hover           { background: rgba(196,150,90,.15); color: #fff; }
.nav-back svg             { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-back-logo            { height: 28px; width: auto; opacity: .85; transition: opacity .2s; filter: brightness(0) invert(1); }
.nav-back:hover .nav-back-logo { opacity: 1; }

/* Burger (mobile) */
.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  min-width: 44px; min-height: 44px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0;
  position: relative; z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}
.burger span                  { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,.85); transition: all .28s ease; border-radius: 1px; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mob {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--forest);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  padding: 28px 28px 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  display: block;
}
.mob.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mob-sec                { margin-bottom: 28px; }
.mob-sec-title {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(196,150,90,.2);
}
.mob-sec a {
  display: block;
  padding: 11px 0;
  font-size: 14px; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.mob-sec a:hover,
.mob-sec a:active       { color: var(--gold-lt); }

/* Redes sociais — versão pequena na nav */
.nav-social             { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.nav-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: rgba(255,255,255,.65);
  transition: color .2s, background .2s;
  flex-shrink: 0;
}
.nav-social a:hover     { color: var(--gold-lt); background: rgba(255,255,255,.08); }
.nav-social a svg       { width: 16px; height: 16px; display: block; flex-shrink: 0; fill: currentColor; }

/* Breakpoints da nav */
@media (max-width: 860px) {
  .nav-links,
  .nav-back,
  .nav-social { display: none; }
  .burger     { display: flex; }
}
@media (min-width: 861px) {
  .mob { display: none !important; }
}


/* ============================================================================
   05 · HERO
   ============================================================================ */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(196,150,90,.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(196,150,90,.06) 0%, transparent 55%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero > div { position: relative; z-index: 1; }

.hero-logo  { width: clamp(130px, 22vw, 210px); margin: 0 auto 28px; animation: fUp .9s ease .1s both; }
.hero-badge {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(196,150,90,.85);
  margin-bottom: 14px;
  animation: fIn 1s ease both;
}
.hero-rule {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 22px auto;
  animation: sX .8s ease .4s both;
  transform-origin: center;
}
.hero-tag {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: clamp(17px, 2.5vw, 24px);
  color: var(--gold-xl);
  max-width: 480px;
  margin: 0 auto 38px;
  line-height: 1.65;
  animation: fUp .9s ease .3s both;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(196,150,90,.55);
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  animation: fIn 1.5s ease 1s both;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 24px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}


/* ============================================================================
   06 · STATS
   ============================================================================ */
.stats {
  background: var(--cream2);
  padding: 52px 24px;
  border-bottom: 1px solid rgba(196,150,90,.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  text-align: center;
}
.stat-val { font-family: 'Lora', Georgia, serif; font-size: 42px; font-weight: 400; color: var(--forest); line-height: 1; }
.stat-lbl { font-size: 11.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--soft); margin-top: 6px; }


/* ============================================================================
   07 · METHODOLOGY
   ============================================================================ */
.meth          { background: var(--forest); padding: 80px 24px; color: #fff; }
.meth-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 720px) { .meth-grid { grid-template-columns: 1fr; } }

.meth-label    { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.meth-h        { font-family: 'Lora', Georgia, serif; font-size: clamp(26px, 4vw, 42px); font-weight: 400; line-height: 1.25; margin-bottom: 20px; }
.meth-p        { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.72); margin-bottom: 24px; }
.meth-q        { border-left: 2px solid var(--gold); padding: 12px 20px; font-family: 'Lora', Georgia, serif; font-style: italic; font-size: 18px; color: var(--gold-xl); line-height: 1.55; }
.meth-q cite   { display: block; font-style: normal; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }

.meth-cards    { display: flex; flex-direction: column; gap: 14px; }
.meth-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(196,150,90,.2);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 16px;
}
.meth-ic {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(196,150,90,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.meth-ic svg     { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.meth-card h4    { font-size: 13px; font-weight: 500; letter-spacing: .05em; margin-bottom: 3px; }
.meth-card p     { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }


/* ============================================================================
   08 · SECTION HEADER (reutilizável)
   ============================================================================ */
.sec-hd          { padding: 76px 24px 48px; text-align: center; }
.sec-hd.no-top   { padding-top: 0; }
.sec-hd h2       { font-family: 'Lora', Georgia, serif; font-size: clamp(30px, 5vw, 50px); font-weight: 400; color: var(--forest); line-height: 1.2; }
.sec-hd p        { max-width: 520px; margin: 16px auto 0; font-size: 15px; line-height: 1.8; color: var(--soft); }


/* ============================================================================
   09 · COURSES
   ============================================================================ */
.courses          { padding: 0 24px 88px; }
.courses-grid     { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 24px; }
@media (max-width: 640px) { .courses-grid { grid-template-columns: 1fr; } }

.cc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--sh);
  transition: box-shadow .3s, transform .3s;
}
.cc:hover         { box-shadow: var(--sh-lg); transform: translateY(-3px); }

.cc-top {
  background: var(--forest);
  padding: 24px 24px 20px;
  position: relative;
  overflow: hidden;
}
.cc-top::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.cc-num   { font-family: 'Lora', Georgia, serif; font-size: 54px; font-weight: 400; color: rgba(196,150,90,.16); position: absolute; top: 10px; right: 18px; line-height: 1; user-select: none; }
.cc-tag   { display: inline-block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(196,150,90,.35); padding: 3px 9px; border-radius: 2px; margin-bottom: 10px; }
.cc-title { font-family: 'Lora', Georgia, serif; font-size: 20px; font-weight: 400; color: #fff; line-height: 1.3; margin-bottom: 4px; }
.cc-sub   { font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-lt); opacity: .9; }

.cc-body  { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 16px; }

.cc-meta  { display: flex; gap: 14px; flex-wrap: wrap; }
.mpill    { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--soft); }
.mpill svg{ width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.cc-items          { display: flex; flex-direction: column; gap: 6px; flex: 1; padding-top: 4px; border-top: 1px solid var(--cream2); }
.cc-items li       { font-size: 13px; line-height: 1.6; color: var(--text); display: flex; gap: 8px; align-items: baseline; }
.cc-items li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }

.cc-foot {
  padding: 16px 24px;
  background: var(--cream);
  border-top: 1px solid rgba(196,150,90,.15);
  display: flex; justify-content: flex-end;
}
.btn-int {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: #fff;
  font-size: 11.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background .22s;
}
.btn-int:hover { background: var(--forest2); }
.btn-int svg   { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }


/* ============================================================================
   10 · FLOWER FELLOW
   ============================================================================ */
.fellow         { background: var(--forest); padding: 80px 24px; color: #fff; }
.fellow-in      { max-width: 820px; margin: 0 auto; text-align: center; }
.fellow-in h2   { font-family: 'Lora', Georgia, serif; font-size: clamp(34px, 5.5vw, 60px); font-weight: 400; margin-bottom: 6px; }
.fellow-sub     { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 24px; display: block; }
.fellow-p       { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.72); max-width: 600px; margin: 0 auto 36px; }

.fboxes         { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 40px; }
.fbox           { background: rgba(255,255,255,.055); border: 1px solid rgba(196,150,90,.2); border-radius: var(--r); padding: 22px 14px; text-align: center; }
.fbox-val       { font-family: 'Lora', Georgia, serif; font-size: 36px; font-weight: 400; color: var(--gold-lt); display: block; line-height: 1; margin-bottom: 6px; }
.fbox-lbl       { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }

.fellow-list                  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; text-align: left; max-width: 600px; margin: 0 auto 28px; }
@media (max-width: 520px)     { .fellow-list { grid-template-columns: 1fr; } }
.fellow-list li               { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.72); display: flex; gap: 10px; align-items: baseline; }
.fellow-list li::before       { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }

.fellow-note    { font-size: 12.5px; color: rgba(255,255,255,.38); font-style: italic; margin-bottom: 30px; }
.fellow-locs    { font-size: 12.5px; color: rgba(255,255,255,.48); margin-top: 14px; letter-spacing: .04em; }

.fellow-cta-btn {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  background: var(--gold);
  color: var(--forest);
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--r);
  border: none; cursor: pointer;
  text-align: center;
  line-height: 1;
  transition: background .25s, transform .2s;
}
.fellow-cta-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }


/* ============================================================================
   11 · DIFFERENTIALS
   ============================================================================ */
.diffs         { padding: 80px 24px; }
.diffs-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; margin-top: 48px; }
.diff {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--sh);
}
.diff-ic       { flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--line-stronger); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.diff-ic svg   { width: 20px; height: 20px; stroke: var(--forest); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.diff h3       { font-size: 14.5px; font-weight: 500; color: var(--forest); margin-bottom: 6px; }
.diff p        { font-size: 13.5px; color: var(--soft); line-height: 1.7; }


/* ============================================================================
   12 · SPECIAL CONDITIONS
   ============================================================================ */
.special       { background: var(--cream2); padding: 72px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sp-grid       { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin-top: 44px; }
.sp-card       { background: #fff; border-radius: var(--r); padding: 28px 24px; border: 1px solid var(--line); box-shadow: var(--sh); text-align: center; }
.sp-ic         { width: 44px; height: 44px; border: 1px solid rgba(27,56,39,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.sp-ic svg     { width: 20px; height: 20px; stroke: var(--forest); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sp-card h3    { font-size: 14.5px; font-weight: 500; color: var(--forest); margin-bottom: 8px; }
.sp-card p     { font-size: 14px; color: var(--soft); line-height: 1.7; }


/* ============================================================================
   13 · SOBRE A DRA. FLORA
   ============================================================================ */
.sobre         { background: var(--forest); padding: 80px 24px; color: #fff; }
.sobre-hd      { text-align: center; margin-bottom: 48px; }
.sobre-h       { font-size: clamp(32px, 5vw, 52px); font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 0; }
.sobre-eyebrow { color: var(--gold); }

.sobre-top                    { display: grid; grid-template-columns: 340px 1fr; gap: 52px; align-items: start; margin-bottom: 56px; }
@media (max-width: 760px)     { .sobre-top { grid-template-columns: 1fr; } }

.sobre-portrait               { border-radius: var(--r); overflow: hidden; position: relative; flex-shrink: 0; }
.sobre-portrait::after        { content: ''; position: absolute; inset: 0; border: 1px solid rgba(196,150,90,.3); border-radius: var(--r); pointer-events: none; }
.sobre-portrait img           { width: 100%; height: 560px; object-fit: cover; object-position: center top; display: block; }
@media (max-width: 760px)     { .sobre-portrait img { height: 440px; } }

.sobre-bio    { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.sobre-p      { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.72); }
.sobre-quote  { border-left: 2px solid var(--gold); padding: 12px 20px; font-family: 'Lora', Georgia, serif; font-style: italic; font-size: 18px; color: var(--gold-xl); line-height: 1.55; }
.sobre-quote cite { display: block; font-style: normal; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }

.sobre-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.badge        { background: rgba(196,150,90,.1); border: 1px solid rgba(196,150,90,.28); border-radius: 2px; padding: 8px 14px; text-align: center; }
.badge-val    { font-family: 'Lora', Georgia, serif; font-size: 12px; font-weight: 600; color: var(--gold-lt); display: block; letter-spacing: .04em; }
.badge-lbl    { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.48); margin-top: 2px; display: block; }

/* Galeria */
.sobre-gallery-label   { text-align: center; margin-bottom: 20px; }
.sobre-gallery-eyebrow { color: var(--gold-lt); }
.sobre-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 52px;
}
.gfoto              { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; }
.gfoto img          { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s ease; }
.gfoto.g-tall img   { height: 260px; }
.gfoto:hover img    { transform: scale(1.04); }
.gfoto figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,56,39,.9) 0%, transparent 100%);
  padding: 28px 12px 10px;
  font-size: 10px; letter-spacing: .03em; line-height: 1.4;
  color: rgba(255,255,255,.88);
  opacity: 0;
  transition: opacity .3s ease;
}
.gfoto:hover figcaption,
.gfoto:focus-within figcaption { opacity: 1; }
@media (max-width: 680px) {
  .sobre-gallery     { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gfoto.g-tall img,
  .gfoto img         { height: 160px; }
}

/* Credenciais */
.sobre-creds-bar    { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.cred-card          { background: rgba(255,255,255,.055); border: 1px solid rgba(196,150,90,.2); border-radius: var(--r); padding: 18px 20px; display: flex; gap: 16px; align-items: flex-start; }
.cred-ic            { flex-shrink: 0; width: 38px; height: 38px; border: 1px solid rgba(196,150,90,.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cred-ic svg        { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cred-card h4       { font-size: 12.5px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 3px; }
.cred-card p        { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.55; }


/* ============================================================================
   14 · TESTIMONIALS
   ============================================================================ */
.testis             { padding: 80px 24px; background: var(--cream2); }
.testis-grid        { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.tcard              { background: #fff; border: 1px solid rgba(196,150,90,.2); border-radius: var(--r); padding: 28px 24px; box-shadow: var(--sh); display: flex; flex-direction: column; gap: 14px; }
.tcard-stars        { display: flex; gap: 3px; }
.tcard-stars svg    { width: 13px; height: 13px; fill: var(--gold); stroke: none; }
.tcard-text         { font-family: 'Lora', Georgia, serif; font-style: italic; font-size: 16px; color: var(--text); line-height: 1.6; flex: 1; }
.tcard-name         { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); padding-top: 12px; border-top: 1px solid var(--cream2); }

/* Google rating strip */
.google-strip       { margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.g-rating           { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(196,150,90,.2); border-radius: var(--r); padding: 14px 24px; box-shadow: var(--sh); }
.g-rating .g-logo   { width: 20px; height: 20px; }
.g-rating .g-val    { font-family: 'Lora', Georgia, serif; font-size: 22px; font-weight: 600; color: var(--forest); }
.g-rating .g-stars  { display: flex; gap: 2px; }
.g-rating .g-stars svg { width: 13px; height: 13px; fill: var(--gold); }
.g-rating .g-count  { font-size: 13px; color: var(--soft); }
.g-rating-row       { display: flex; align-items: center; gap: 6px; }


/* ============================================================================
   15 · FORM SECTION (cadastro de interesse)
   ============================================================================ */
.form-sec       { background: var(--cream2); padding: 80px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.form-layout    { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
@media (max-width: 820px) { .form-layout { grid-template-columns: 1fr; } }

.form-h         { font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: var(--forest); margin-bottom: 16px; line-height: 1.2; }
.form-p         { font-size: 15px; line-height: 1.85; color: var(--soft); margin-bottom: 24px; }

.form-benefits           { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.form-benefits li        { font-size: 13.5px; color: var(--text); display: flex; gap: 10px; align-items: baseline; }
.form-benefits li::before{ content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }

.form-note      { font-size: 13.5px; color: var(--soft); line-height: 1.7; }
.form-wpp-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest); color: #fff;
  font-size: 11.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--r);
  margin-top: 12px;
  transition: background .25s;
}
.form-wpp-link:hover { background: var(--forest2); }

.form-frame-wrap        { background: #fff; border: 1px solid rgba(196,150,90,.2); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); }
.form-frame-wrap iframe { border: none; display: block; width: 100%; height: 700px; }

.form-eyebrow           { color: var(--gold); }


/* ============================================================================
   16 · CONTACT
   ============================================================================ */
.contact        { padding: 80px 24px; text-align: center; background: var(--cream); }
.contact h2     { font-family: 'Lora', Georgia, serif; font-size: clamp(28px, 4.5vw, 52px); font-weight: 400; color: var(--forest); margin-bottom: 10px; }
.contact .lead  { font-size: 13.5px; color: var(--soft); max-width: 440px; margin: 0 auto 40px; line-height: 1.85; }

.cta-btns       { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.btn-prim {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--forest); color: #fff;
  font-size: 10.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background .25s;
}
.btn-prim:hover { background: var(--forest2); }
.btn-prim svg   { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.btn-out {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--forest);
  font-size: 10.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--r);
  border: 1.5px solid var(--forest);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn-out:hover  { background: var(--forest); color: #fff; }
.btn-out svg    { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; flex-shrink: 0; }

.contact-info       { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--soft); }
.contact-info span  { display: flex; align-items: center; gap: 7px; }
.contact-info svg   { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.contact-social {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-social a {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--soft);
  transition: color .2s;
}
.contact-social a:hover { color: var(--forest); }
.contact-social a svg   { width: 15px; height: 15px; flex-shrink: 0; display: block; }


/* ============================================================================
   17 · FOOTER
   ============================================================================ */
.footer {
  background: var(--forest);
  padding: 28px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  border-top: 1px solid var(--line);
}
.footer-logo img        { height: 60px; width: auto; opacity: .7; transition: opacity .2s; }
.footer-logo img:hover  { opacity: 1; }

.footer-links           { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a         { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover   { color: var(--gold-lt); }

.footer-copy            { font-size: 12px; color: rgba(255,255,255,.3); width: 100%; text-align: center; margin-top: 4px; }


/* ============================================================================
   18 · ANIMAÇÕES
   ============================================================================ */
@keyframes fUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fIn { from { opacity: 0; }                                to { opacity: 1; } }
@keyframes sX  { from { transform: scaleX(0); }                       to { transform: scaleX(1); } }
