/* ============================================================
   PERMITA-SE BY DINA BIANCHI — styles.css
   Paleta: terrosos, nude, laranja quente, bege quente
   ============================================================ */

/* ===== TOKENS ===== */
:root {
  /* Cores principais */
  --cream:       #FDFAF5;
  --cream-soft:  #FBF5EE;
  --beige:       #F2E5D4;
  --beige-deep:  #DEC9AE;
  --nude:        #E8D5BE;
  --sage:        #D9783A;
  --sage-soft:   #E89A65;
  --sage-deep:   #C05E1A;
  --earth:       #8B6B4A;
  --earth-soft:  #A8845E;
  --earth-deep:  #6B4F33;
  --copper:      #B07D54;

  /* Texto */
  --ink:         #1F1E1B;
  --ink-soft:    #3A3830;
  --ink-mute:    #5C5A52;
  --ink-light:   #8A8778;

  /* UI */
  --line:        #E2D9CA;
  --paper:       #FDFAF5;

  /* Gradientes */
  --wa-grad:     linear-gradient(180deg, #2FDB6F 0%, #1FAD52 100%);
  --orange-grad: linear-gradient(135deg, #E89A65 0%, #D9783A 50%, #C05E1A 100%);
  --orange-grad-hover: linear-gradient(135deg, #F0B287 0%, #E08B4D 50%, #D06820 100%);
  --earth-grad:  linear-gradient(135deg, #A8845E 0%, #8B6B4A 50%, #6B4F33 100%);
  --beige-grad:  linear-gradient(145deg, var(--cream) 0%, var(--beige) 100%);

  /* Tipografia */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Espaçamentos */
  --gutter:   clamp(20px, 5vw, 48px);
  --section:  clamp(56px, 6vw, 96px);
  --section-sm: clamp(40px, 5vw, 72px);

  /* Raios */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(31,30,27,.07);
  --shadow-md: 0 6px 24px rgba(31,30,27,.10);
  --shadow-lg: 0 16px 48px rgba(31,30,27,.13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol { list-style: none; }

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

/* ===== ACESSIBILIDADE ===== */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 8px;
  z-index: 9999;
  background: var(--sage-deep);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
}
.skip-link:focus {
  top: 8px;
}

*:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== TIPOGRAFIA BASE ===== */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.02em;
  hyphens: manual;
  text-wrap: balance;
}

h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
  text-wrap: balance;
}

p {
  font-family: var(--font-serif);
  font-weight: 400;
  text-wrap: pretty;
  hyphens: manual;
  line-height: 1.65;
}

em {
  font-style: italic;
  color: var(--sage-deep);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  padding: 14px 28px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

/* Verde WhatsApp */
.btn-wa {
  background: var(--wa-grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(31,173,82,.30);
}

.btn-wa:hover {
  box-shadow: 0 8px 28px rgba(31,173,82,.40);
}

/* Laranja com gradiente — era 'earth' (marrom), agora laranja vivo */
.btn-earth {
  background: var(--orange-grad);
  color: #fff;
  box-shadow: 0 4px 18px rgba(192,94,26,.35);
  position: relative;
  overflow: hidden;
}

.btn-earth::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-grad-hover);
  opacity: 0;
  transition: opacity .25s ease;
}

.btn-earth > * { position: relative; z-index: 1; }
.btn-earth { color: #fff; }

.btn-earth:hover {
  box-shadow: 0 10px 32px rgba(192,94,26,.50);
}

.btn-earth:hover::before {
  opacity: 1;
}

/* Outline — hover ganha gradiente */
.btn-outline {
  background: transparent;
  color: var(--sage-deep);
  border: 2px solid var(--sage-deep);
  padding: 12px 26px;
  transition: all .25s ease;
}

.btn-outline:hover {
  background: var(--orange-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(192,94,26,.40);
}

/* Ghost (header) */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--sage-soft);
  color: var(--sage-deep);
}

/* Card — hover ganha gradiente */
.btn-card {
  background: var(--cream-soft);
  color: var(--sage-deep);
  border: 1.5px solid var(--beige-deep);
  font-size: .875rem;
  padding: 10px 22px;
  transition: all .25s ease;
}

.btn-card:hover {
  background: var(--orange-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(192,94,26,.35);
}

/* Header — gradiente laranja sólido */
.btn-header {
  background: var(--orange-grad);
  color: #fff;
  font-size: .875rem;
  padding: 11px 22px;
  box-shadow: 0 3px 14px rgba(192,94,26,.35);
}

.btn-header:hover {
  background: var(--orange-grad-hover);
  box-shadow: 0 6px 22px rgba(192,94,26,.50);
}

/* Tamanhos */
.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-xl {
  font-size: 1.0625rem;
  padding: 18px 44px;
}

.icon-wa {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ===== SEÇÃO: cabeçalho padrão ===== */
.section {
  padding: var(--section) 0;
  overflow: clip;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .9s cubic-bezier(.2,.8,.2,1),
    transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Variantes direcionais */
.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal-scale {
  transform: scale(.94);
}

.reveal-fade {
  transform: none;
}

/* Stagger automático em grids: cada item entra com leve atraso */
.reveal-stagger > .reveal:nth-child(1) { --reveal-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { --reveal-delay: 80ms; }
.reveal-stagger > .reveal:nth-child(3) { --reveal-delay: 160ms; }
.reveal-stagger > .reveal:nth-child(4) { --reveal-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(5) { --reveal-delay: 320ms; }
.reveal-stagger > .reveal:nth-child(6) { --reveal-delay: 400ms; }
.reveal-stagger > .reveal:nth-child(7) { --reveal-delay: 480ms; }
.reveal-stagger > .reveal:nth-child(8) { --reveal-delay: 560ms; }

/* Parallax suave em imagens hero/sobre quando scrollar */
.parallax-soft {
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(253,250,245,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}

.site-header:has(+ .mobile-menu.is-open),
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}

/* Logo */
.logo, .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
}

.logo-pre {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--sage-deep);
  letter-spacing: -.01em;
}

.logo-by {
  font-family: var(--font-sans);
  font-size: .6875rem;
  font-weight: 400;
  color: var(--ink-mute);
  letter-spacing: .04em;
  align-self: center;
}

.logo-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: -.01em;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .01em;
  transition: color .18s;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-deep);
  transition: width .25s ease;
}

.desktop-nav a:hover {
  color: var(--sage-deep);
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 80px 32px 48px;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(31,30,27,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--beige);
  border: 1.5px solid var(--beige-deep);
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .18s, border-color .18s;
}

.mobile-menu-close:hover {
  background: var(--beige-deep);
  border-color: var(--sage-deep);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.01em;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  transition: color .18s;
}

.mobile-nav-link:last-of-type {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--sage-deep);
}

.mobile-menu-cta {
  margin-top: 32px;
  width: 100%;
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(68px + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(64px, 9vw, 120px);
  position: relative;
  overflow: clip;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  animation: heroFadeIn .9s cubic-bezier(.2,.8,.2,1) both;
}

.hero-visual {
  position: relative;
  animation: heroFadeIn 1.1s .15s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pílula anúncio */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--beige);
  border: 1px solid var(--beige-deep);
  border-radius: var(--radius-pill);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--earth);
  padding: 6px 14px;
  letter-spacing: .02em;
  margin-bottom: 22px;
}

.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--sage-deep);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Título hero */
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-deep);
}

/* Sub hero */
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Ações hero */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Stats hero */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  font-feature-settings: "lnum";
}

.stat-plus {
  font-size: 1.25rem;
}

.stat-label {
  font-size: .75rem;
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: .01em;
  max-width: 100px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
  flex-shrink: 0;
}

/* Imagem hero */
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-ornament {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.25);
  pointer-events: none;
}

/* Badge flutuante */
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sage-deep);
  display: flex;
  align-items: center;
}

.badge-text {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  white-space: nowrap;
}

/* Blob de fundo hero */
.hero-bg-blob {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(217,120,58,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ===== SOBRE ===== */
.sobre {
  background: var(--cream-soft);
}

.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.sobre-visual {
  position: relative;
  min-height: 480px;
}

.sobre-frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--beige);
}

.sobre-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-frame-1 {
  width: 70%;
  aspect-ratio: 3/4;
  top: 0;
  left: 0;
}

.sobre-frame-2 {
  width: 56%;
  aspect-ratio: 1/1;
  bottom: 0;
  right: 0;
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-lg);
}

.sobre-quote-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  max-width: 220px;
  text-align: center;
  z-index: 2;
}

.sobre-quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sobre-text p:not(.section-eyebrow):not(.lead-text) {
  color: var(--ink-mute);
  font-size: .9375rem;
  line-height: 1.75;
}

/* ===== MÉTODO ===== */
.metodo {
  background: var(--cream);
}

.metodo-container {
  /* container padrão */
}

.metodo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.metodo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  gap: 16px;
  transition: box-shadow .25s, transform .25s;
}

.metodo-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num-wrap {
  width: 64px;
  height: 64px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  flex-shrink: 0;
  margin: 0 auto;
}

.step-icon {
  width: 28px;
  height: 28px;
  font-size: 26px;
  line-height: 1;
}

.step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-title {
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 600;
}

.step-desc {
  font-size: .9375rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

.metodo-cta {
  text-align: center;
}

/* ===== SERVIÇOS ===== */
.servicos {
  background: var(--cream-soft);
}

.servicos-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
  max-width: 760px;
  margin: 0 auto;
}

.servico-card {
  width: 100%;
}

.servico-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  gap: 12px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.servico-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--sage-soft);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  margin: 0 auto;
  flex-shrink: 0;
  transition: background .25s;
}

.servico-card:hover .card-icon {
  background: rgba(192,94,26,.12);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card-icon i {
  font-size: 26px;
  line-height: 1;
}

.card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--sage-deep);
  letter-spacing: .08em;
  margin-top: -4px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.card-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--earth-soft);
  margin-top: 6px;
}

.card-desc {
  font-size: .95rem;
  color: var(--ink-mute);
  line-height: 1.75;
  flex-grow: 1;
}

.card-desc em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sage-deep);
}

.servico-card-destaque {
  background: linear-gradient(150deg, var(--cream) 0%, var(--beige) 100%);
  border-color: var(--beige-deep);
  position: relative;
}

.servicos-grid {
  margin-top: 24px;
}

.servico-card-destaque {
  margin-top: 32px;
  padding-top: clamp(40px, 4vw, 56px);
}

.servico-card-destaque::before {
  content: 'Experiência completa';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-grad);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(192,94,26,.30);
}

.sobre-quote {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--sage-deep);
  border-left: 3px solid var(--sage-soft);
  padding-left: 20px;
  margin: 8px 0;
}

.sobre-quote em {
  font-style: italic;
  color: var(--sage-deep);
}

/* ===== BENEFÍCIOS ===== */
.beneficios {
  background: var(--cream);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.beneficio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 2.5vw, 32px);
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-soft) 100%);
  border: 1px solid var(--beige-deep);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.beneficio-item::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(217,120,58,.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform .5s ease, opacity .35s ease;
}

.beneficio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
}

.beneficio-item:hover::before {
  transform: scale(1.4);
}

.beneficio-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(145deg, var(--beige) 0%, var(--cream-soft) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  margin: 0 auto;
  flex-shrink: 0;
  position: relative;
  box-shadow:
    0 4px 14px rgba(192,94,26,.10),
    inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .4s ease, box-shadow .4s ease;
}

/* Anel decorativo orbitando o ícone */
.beneficio-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px dashed rgba(192,94,26,.25);
  border-radius: 50%;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), border-color .4s ease, opacity .4s ease;
}

/* Brilho sutil interno */
.beneficio-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%);
  pointer-events: none;
}

.beneficio-item:hover .beneficio-icon {
  transform: scale(1.06);
  box-shadow:
    0 8px 24px rgba(192,94,26,.20),
    inset 0 1px 0 rgba(255,255,255,.6);
}

.beneficio-item:hover .beneficio-icon::before {
  transform: rotate(180deg);
  border-color: rgba(192,94,26,.55);
}

.beneficio-icon svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.beneficio-icon i {
  font-size: 30px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.beneficio-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.005em;
  line-height: 1.25;
}

.beneficio-desc {
  font-family: var(--font-serif);
  font-size: .9375rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

/* ===== GALERIA ===== */
.galeria {
  background: var(--cream-soft);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.galeria-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--beige);
  margin: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}

.galeria-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  z-index: 1;
  position: relative;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.galeria-item:hover img {
  transform: scale(1.05);
}

/* ===== FORMAÇÃO ===== */
.formacao {
  background: var(--cream);
}

.formacao-container {
  display: block;
  max-width: 760px;
  margin: 0 auto;
}

.formacao-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.formacao-card-stat-inline {
  align-self: center;
  margin: 16px auto 24px;
}

.formacao-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.formacao-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(145deg, var(--cream) 0%, var(--cream-soft) 100%);
  border: 1px solid var(--beige-deep);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
  position: relative;
  overflow: hidden;
}

.formacao-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--sage-soft), var(--sage-deep));
  opacity: 0;
  transition: opacity .28s ease;
}

.formacao-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-soft);
}

.formacao-item:hover::before {
  opacity: 1;
}

.formacao-dot {
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, var(--beige), var(--cream));
  border: 1px solid var(--beige-deep);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

.formacao-dot::before {
  content: '✦';
}

.formacao-item:hover .formacao-dot {
  background: linear-gradient(145deg, var(--cream), var(--beige));
  border-color: var(--sage-soft);
  transform: rotate(72deg);
}

.formacao-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
  flex: 1;
}

.formacao-name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.25;
}

.formacao-inst {
  font-family: var(--font-sans);
  font-size: .7rem;
  color: var(--earth-soft);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Visual formação */
.formacao-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.formacao-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--beige);
}

.formacao-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formacao-card-stat {
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  width: 100%;
  max-width: 260px;
}

.stat-big {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage-deep);
  line-height: 1;
  font-feature-settings: "lnum";
}

.stat-label-big {
  display: block;
  font-size: .8125rem;
  color: var(--ink-mute);
  margin-top: 6px;
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream-soft);
}

.faq-container {
  /* usa container padrão */
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  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 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
  transition: color .18s;
}

.faq-question:hover {
  color: var(--sage-deep);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--ink-mute);
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--sage-deep);
}

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: .9375rem;
  color: var(--ink-mute);
  line-height: 1.75;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--cream);
}

.cta-box {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--beige) 0%, var(--cream-soft) 100%);
  border: 1px solid var(--beige-deep);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 80px) clamp(32px, 5vw, 72px);
  text-align: center;
  position: relative;
  overflow: clip;
  box-shadow: var(--shadow-lg);
}

.cta-ornament {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(217,120,58,.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--earth);
  margin-bottom: 12px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-title em {
  color: var(--sage-deep);
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--ink-mute);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.cta-contact-info {
  margin-top: 16px;
  font-size: .875rem;
  color: var(--ink-light);
}

.cta-contact-info a {
  color: var(--sage-deep);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .18s;
}

.cta-contact-info a:hover {
  text-decoration-color: var(--sage-deep);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(253,250,245,.7);
  padding: clamp(48px, 6vw, 72px) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(253,250,245,.12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo .logo-pre {
  color: var(--sage-soft);
}

.footer-logo .logo-by {
  color: rgba(253,250,245,.4);
}

.footer-logo .logo-name {
  color: rgba(253,250,245,.8);
}

.footer-tagline {
  font-size: .8125rem;
  color: rgba(253,250,245,.45);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-nav a {
  font-size: .875rem;
  color: rgba(253,250,245,.6);
  transition: color .18s;
  text-align: center;
}

.footer-nav a:hover {
  color: var(--sage-soft);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(253,250,245,.6);
  transition: color .18s;
}

.footer-link:hover {
  color: var(--sage-soft);
}

.footer-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-icon path[stroke] {
  stroke: currentColor;
  fill: none;
}

.footer-icon rect,
.footer-icon circle[stroke] {
  stroke: currentColor;
  fill: none;
}

.footer-bottom {
  padding: 24px var(--gutter) 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-copyright {
  font-size: .8125rem;
  color: rgba(253,250,245,.35);
}

.footer-credit {
  font-size: .8125rem;
  color: rgba(253,250,245,.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(253,250,245,.05);
  border: 1px solid rgba(253,250,245,.10);
  border-radius: var(--radius-pill);
  transition: background .25s, border-color .25s;
}

.footer-credit:hover {
  background: rgba(253,250,245,.08);
  border-color: var(--sage-soft);
}

.footer-credit a {
  color: var(--sage-soft);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
}

.footer-credit a:hover {
  color: #fff;
}

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  width: 56px;
  height: 56px;
  background: var(--wa-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(31,173,82,.40);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: waPulse 2.5s 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(31,173,82,.55);
  animation: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(31,173,82,.40); }
  50% { box-shadow: 0 4px 32px rgba(31,173,82,.70), 0 0 0 8px rgba(31,173,82,.12); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ===================================================
   RESPONSIVO
   =================================================== */

/* ===== TABLET: <= 1024px ===== */
@media (max-width: 1024px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servico-card,
  .servico-card:nth-child(4),
  .servico-card:nth-child(5) {
    grid-column: auto;
    grid-column-start: auto;
  }

  .servico-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .metodo-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ===== TABLET: <= 900px ===== */
@media (max-width: 900px) {
  .hero-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  /* No mobile: pill + título + sub ACIMA da foto; botões + stats ABAIXO */
  .hero-content {
    display: contents;
  }

  .hero-pill { order: 1; align-self: center; }
  .hero-title { order: 2; text-align: center; }
  .hero-visual { order: 3; }
  .hero-sub { order: 4; }
  .hero-actions { order: 5; }
  .hero-stats { order: 6; }

  .hero-content > * + * {
    margin-top: 16px;
  }

  .hero-visual {
    max-width: 380px;
    margin: 32px auto;
  }

  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .sobre-container {
    grid-template-columns: 1fr;
  }

  .sobre-visual {
    min-height: 320px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .sobre-text {
    text-align: center;
    align-items: center;
  }

  .formacao-text {
    align-items: center;
  }

  .formacao-text > .section-eyebrow,
  .formacao-text > .section-title,
  .formacao-text > .lead-text {
    text-align: center;
  }

  .formacao-list {
    width: 100%;
    text-align: left;
  }

  .formacao-info {
    text-align: left;
  }

  .formacao-card-stat-inline {
    align-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== MOBILE: <= 768px ===== */
@media (max-width: 768px) {
  .desktop-nav,
  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .header-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .logo {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

  .logo-pre {
    font-size: 1rem;
    white-space: nowrap;
  }

  .logo-by {
    font-size: .6rem;
    white-space: nowrap;
  }

  .logo-name {
    font-size: .75rem;
    white-space: nowrap;
  }

  .metodo-steps {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .metodo-steps .metodo-step {
    align-items: center;
    text-align: center;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .servico-card,
  .servico-card:nth-child(4),
  .servico-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-box .btn-xl {
    width: 100%;
    padding: 18px 16px;
    font-size: 1rem;
  }

  .hero-badge {
    left: 0;
    bottom: -12px;
  }
}

/* ===== MOBILE PEQUENO: <= 480px ===== */
@media (max-width: 480px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-divider {
    height: 24px;
  }

  .footer-nav {
    gap: 8px 16px;
  }

  /* ===== FIXES MOBILE GERAIS ===== */
  /* WhatsApp flutuante menor pra não cobrir conteúdo */
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  /* Formação no mobile: cards mais compactos */
  .formacao-item {
    padding: 12px 16px;
    gap: 12px;
  }
  .formacao-dot {
    width: 32px;
    height: 32px;
    font-size: .85rem;
  }
  .formacao-name {
    font-size: 1rem;
  }
  .formacao-inst {
    font-size: .65rem;
  }

  /* Stat-big do formação centralizado e padding ajustado */
  .formacao-card-stat-inline {
    align-self: center;
    margin: 16px auto 24px;
  }
  .stat-big {
    font-size: 2.5rem;
  }

  /* Hero stats em coluna pra não quebrar feio */
  .hero-stats {
    flex-direction: column;
    gap: 14px;
  }
  .stat-divider {
    display: none;
  }
  .stat {
    align-items: center;
    text-align: center;
  }
  .stat-label {
    max-width: none;
  }

  /* Hero badge fica menor e mais perto */
  .hero-badge {
    bottom: -10px;
    left: 8px;
    padding: 8px 12px;
  }
  .badge-text {
    font-size: .7rem;
  }
  .badge-icon {
    font-size: 1.2rem;
  }

  /* Section padding reduzido pra mobile não dar muito espaço vazio */
  .section {
    padding: clamp(56px, 14vw, 96px) 0;
  }

  /* Logo no header não quebra em 2 linhas */
  .logo {
    gap: 4px;
  }
  .logo-pre {
    font-size: .95rem;
  }
  .logo-name {
    font-size: .9rem;
  }

  /* CTA box com padding ajustado */
  .cta-box {
    padding: 36px 18px;
    border-radius: var(--radius-lg);
  }
  .cta-title {
    font-size: 1.7rem;
  }

  /* Servico card mais compacto */
  .servico-card {
    padding: 24px 18px;
  }

  /* Métodos steps mais compactos */
  .metodo-step {
    padding: 24px 18px;
  }
}
