/* ============================================================
   Mylena [Sobrenome] — Psicóloga
   Paleta: verde-oliva + amarelo queimado (mostarda) sobre creme
   ============================================================ */

:root {
  /* Cores */
  --cream:        #FAF6EC;
  --cream-2:      #F2EAD6;
  --sand:         #EADFC6;
  --ink:          #34382B;   /* verde bem escuro (texto) */
  --ink-soft:     #5C6150;
  --muted:        #7A7C6D;

  --olive:        #6E7F52;    /* verde-oliva principal */
  --olive-deep:   #4C5938;    /* verde profundo */
  --olive-soft:   #8B9A6E;

  /* "mustard" mantém o nome, mas agora é tudo VERDE (sem amarelo) */
  --mustard:      #6E7F52;    /* verde-oliva — destaque */
  --mustard-deep: #4C5738;    /* verde escuro para textos e hover */
  --mustard-soft: #BFC9A3;    /* verde claro */

  --white:        #FFFDF8;

  /* Tipografia */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 45px -22px rgba(48, 56, 32, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(48, 56, 32, 0.4);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  /* Degradê vertical suave e contínuo, descendo do topo (rola junto com a página) */
  background: linear-gradient(180deg, #FAF6EC 0%, #F5EEDC 38%, #EFE6CF 68%, #E7DCC3 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Textura fininha de grão (sensação "premium", nada chapado) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--olive-deep);
  letter-spacing: -0.01em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mustard-deep);
  margin-bottom: 14px;
}

.section { padding: 92px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--ink-soft); margin-top: 16px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn-primary { background: var(--olive); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--olive-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--olive-deep); border-color: var(--olive-soft); }
.btn-ghost:hover { background: var(--olive); color: var(--white); border-color: var(--olive); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 89, 56, 0.10);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px -18px rgba(48, 56, 32, 0.6); }

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

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  box-shadow: inset 0 0 0 3px rgba(139, 154, 110, 0.35);
}
.brand-mark-img { width: 48px; height: 48px; object-fit: contain; display: block; }
.brand-text strong { display: block; font-family: var(--serif); font-weight: 600; color: var(--olive-deep); font-size: 1.05rem; }
.brand-text small { display: block; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.04em; }
.brand-last { color: var(--mustard-deep); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--olive-deep); background: rgba(110, 127, 82, 0.10); }
.nav .nav-cta { background: var(--mustard); color: var(--white); margin-left: 6px; }
.nav .nav-cta:hover { background: var(--mustard-deep); color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--olive-deep); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background: transparent;
}
/* Marca d'água de fundo (logo bem suave, atrás de tudo) */
.hero-wm {
  position: absolute;
  right: -3%; top: 50%;
  transform: translateY(-50%);
  width: min(680px, 70%);
  opacity: 0.20;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.2rem, 5.2vw, 3.5rem); margin-bottom: 20px; }
.hero-copy .lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 34ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges li {
  font-size: 0.8rem; font-weight: 700; color: var(--olive-deep);
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid rgba(76, 89, 56, 0.18);
  padding: 7px 14px; border-radius: 999px;
}
.hero-badges li::before { content: "✓ "; color: var(--mustard-deep); }

/* Logo do hero (no lugar da foto) — grande e destacada */
.hero-media { position: relative; display: grid; place-items: center; }
.hero-media::before {
  content: "";
  position: absolute;
  width: 86%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(139, 154, 110, 0.4), rgba(139, 154, 110, 0) 72%);
  z-index: 0;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: min(440px, 90%);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(76, 89, 56, 0.22));
}

/* ============================================================
   FAIXA / STRIP
   ============================================================ */
.strip {
  background: linear-gradient(120deg, var(--olive-deep), var(--olive));
  color: var(--white);
  text-align: center;
  padding: 54px 0;
}
.strip p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  max-width: 760px; margin: 0 auto;
  color: #fdfaf0;
}
.strip-2 { background: linear-gradient(120deg, var(--mustard-deep), var(--mustard)); }
.strip-2 p { color: #fffaf0; }

/* ============================================================
   SOBRE
   ============================================================ */
.about { background: transparent; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
  position: relative;
}
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 -80px 60px -50px rgba(76, 89, 56, 0.4);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }

/* Chips de "paixões" no Sobre */
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 4px; }
.tags li {
  font-size: 0.82rem; font-weight: 700;
  color: var(--mustard-deep);
  background: rgba(139, 154, 110, 0.28);
  border: 1px solid rgba(110, 127, 82, 0.35);
  padding: 6px 14px; border-radius: 999px;
}

.about-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0; }
.about-facts li {
  background: var(--white);
  border: 1px solid rgba(76, 89, 56, 0.14);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-soft);
}
.about-facts strong { display: block; font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mustard-deep); }
.about-facts span { color: var(--ink); font-weight: 600; font-size: 0.95rem; }

/* ============================================================
   CARDS (COMO AJUDO)
   ============================================================ */
.help { background: transparent; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid rgba(76, 89, 56, 0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(110, 127, 82, 0.2), rgba(110, 127, 82, 0.18));
  color: var(--mustard-deep);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--olive-deep); }
.card p { color: var(--ink-soft); font-size: 0.96rem; }

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

/* ============================================================
   PARA QUEM ATENDO
   ============================================================ */
.audience { background: transparent; }

/* ============================================================
   MEU ENCONTRO COM A INFÂNCIA (balões)
   ============================================================ */
.childhood { background: transparent; }
.balloons { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 34px; max-width: 940px; margin: 0 auto; }
.balloon {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(76, 89, 56, 0.14);
  border-radius: 26px;
  padding: 28px 30px;
  box-shadow: var(--shadow-soft);
}
.balloon p { color: var(--ink-soft); font-size: 1.02rem; }
/* Rabinho do balão (fala) */
.balloon::after {
  content: "";
  position: absolute;
  left: 42px; bottom: -14px;
  width: 28px; height: 28px;
  background: var(--white);
  border-right: 1px solid rgba(76, 89, 56, 0.14);
  border-bottom: 1px solid rgba(76, 89, 56, 0.14);
  transform: rotate(45deg);
  border-bottom-right-radius: 6px;
}
.balloon-alt {
  background: linear-gradient(135deg, rgba(139, 154, 110, 0.35), rgba(139, 154, 110, 0.22));
  border-color: rgba(110, 127, 82, 0.3);
  margin-top: 26px;
}
.balloon-alt::after {
  background: #f4ecd6;
  right: 42px; left: auto;
  border-color: rgba(110, 127, 82, 0.3);
}
.childhood-quote {
  max-width: 760px;
  margin: 46px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--olive-deep);
  line-height: 1.4;
  padding: 0 20px;
}
.childhood-quote::before, .childhood-quote::after { content: "“"; color: var(--mustard); }
.childhood-quote::after { content: "”"; }

/* ============================================================
   POR QUE FAZER PSICOTERAPIA
   ============================================================ */
.why { background: transparent; }
.why-moments {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.why-moments li {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(76, 89, 56, 0.14);
  border-left: 4px solid var(--mustard);
  border-radius: 14px;
  padding: 18px 22px 18px 52px;
  font-size: 1.05rem;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.why-moments li::before {
  content: "“";
  position: absolute; left: 18px; top: 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--mustard-deep);
  line-height: 1;
}

/* ============================================================
   ABORDAGEM
   ============================================================ */
.approach { background: transparent; }
.approach-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 50px; align-items: center; }
.approach-side { display: flex; flex-direction: column; }
.approach-emblem {
  position: relative;
  margin: 36px auto 0;
  max-width: 300px;
  padding: 28px 22px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.approach-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(139, 154, 110, 0.30), transparent 74%);
  z-index: -1;
}
.sig-mark {
  width: 62px; height: 62px;
  filter: drop-shadow(0 10px 18px rgba(76, 89, 56, 0.16));
  animation: floaty 9s ease-in-out infinite;
}
.sig-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--olive-deep);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.sig-line { width: 42px; height: 2px; background: var(--olive); opacity: 0.5; border-radius: 2px; }
.sig-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 700;
}
.approach-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 20px; }
.approach-copy p { color: var(--ink-soft); margin-bottom: 16px; }

.check-list { list-style: none; margin-top: 20px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink); font-weight: 600; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: inset 0 0 0 3px rgba(139, 154, 110, 0.6);
}
.check-list li::after {
  content: "✓";
  position: absolute; left: 5px; top: 1px;
  color: var(--white); font-size: 0.72rem; font-weight: 900;
}

.approach-note {
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: #fdfaf0;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow);
}
.approach-note blockquote { font-family: var(--serif); font-size: 1.3rem; font-style: italic; line-height: 1.45; }
.approach-sign { display: block; margin-top: 18px; font-size: 0.82rem; color: var(--mustard-soft); font-weight: 700; letter-spacing: 0.04em; }

/* ============================================================
   ATENDIMENTO / MODALIDADES
   ============================================================ */
.modes { background: transparent; }
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.mode {
  background: var(--white);
  border: 1px solid rgba(76, 89, 56, 0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
}
.mode h3 { font-size: 1.4rem; margin-bottom: 12px; }
.mode > p { color: var(--ink-soft); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  text-align: center;
  padding: 28px 22px;
  position: relative;
}
.step-num {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.step h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--olive-deep); }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: transparent; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(76, 89, 56, 0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--olive-deep);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--mustard-deep); font-family: var(--sans);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { color: var(--ink-soft); }

/* ============================================================
   CONTATO
   ============================================================ */
.contact { background: transparent; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 18px; }
.contact-copy > p { color: var(--ink-soft); margin-bottom: 26px; }

.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.contact-list .ci {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--olive);
  font-size: 1.1rem;
  border: 1px solid rgba(76, 89, 56, 0.14);
}
.contact-list a:hover { color: var(--mustard-deep); }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(76, 89, 56, 0.14);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1.5px solid rgba(76, 89, 56, 0.2);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(110, 127, 82, 0.15);
}
.field textarea { resize: vertical; }
.form-hint { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--olive-deep); color: #e9ecdf; padding: 54px 0 34px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark { box-shadow: inset 0 0 0 3px rgba(139, 154, 110, 0.4); }
.footer-brand strong { display: block; font-family: var(--serif); color: var(--white); }
.footer-brand small { color: var(--mustard-soft); font-size: 0.76rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.footer-nav a { font-size: 0.9rem; color: #d9ddca; }
.footer-nav a:hover { color: var(--mustard-soft); }
.footer-note { text-align: right; font-size: 0.82rem; color: #c7ccb6; }
.footer-note small { color: #a7ad95; }

/* Crédito FOWTECH */
.footer-credit {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: #c1c7b1;
  transition: color 0.2s, opacity 0.2s;
}
.dev-credit:hover { color: #ffffff; }
.fowtech-logo {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #eef1e6;
  line-height: 1;
}
.fowtech-logo b { font-weight: 800; }
.dev-credit:hover .fowtech-logo { color: #ffffff; }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wpp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease);
}
.wpp-float:hover { transform: scale(1.08); }

/* ============================================================
   ÍCONES DOS CARDS (linha)
   ============================================================ */
.card-icon svg { width: 28px; height: 28px; }

/* ============================================================
   DECORAÇÕES (folhagens + florzinha da logo)
   ============================================================ */
.section { position: relative; }
.section > .container { position: relative; z-index: 1; }
.about, .approach, .why, .childhood, .contact { overflow: hidden; }

.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: floaty 9s ease-in-out infinite;
}
.deco-leaf { opacity: 0.24; }
.deco-mark { opacity: 0.12; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}

.d-about       { top: 20px;   right: -26px; width: 150px; rotate: 10deg; }
.d-why         { top: 0;      left: -30px;  width: 158px; rotate: -8deg;  scale: -1 1; animation-delay: -1.5s; }
.d-childhood   { bottom: 6px;  right: -26px; width: 140px; rotate: -14deg; animation-delay: -2s; }
.d-contact-mark{ top: -30px;  right: -64px; width: 560px; rotate: -24deg; opacity: 0.5; animation-delay: -4s; }

/* Flores da logo nas laterais — preenchem os vazios dos lados */
.help, .faq { overflow: hidden; }
.side-flower { opacity: 0.14; width: min(360px, 27vw); }
.sf-l { left: -150px; rotate: 12deg;  top: 12%; }
.sf-r { right: -150px; rotate: -14deg; top: 24%; }
.sf-l2 { left: -150px; rotate: -10deg; top: 46%; }
@media (max-width: 940px) { .side-flower { display: none; } }
.d-contact-leaf{ bottom: 4px;  left: -30px;  width: 152px; rotate: 6deg;   scale: -1 1; animation-delay: -1s; }

@media (max-width: 680px) {
  .d-contact-mark { width: 220px; opacity: 0.09; }
  .deco-leaf { opacity: 0.16; }
  .approach-emblem { width: min(190px, 62%); }
}

/* ============================================================
   ANIMAÇÃO REVEAL
   ============================================================ */
/* Só esconde para animar quando há JS (classe .js no <html>). Sem JS, tudo fica visível. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
/* ============================================================
   REFINAMENTO GERAL (polish)
   ============================================================ */
body { font-size: 16.5px; line-height: 1.72; }

.section-head { margin-bottom: 58px; }

/* Ornamento antes do "eyebrow" */
.eyebrow { display: inline-flex; align-items: center; gap: 11px; }
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.85;
}

/* Traço decorativo (verde→mostarda) sob os títulos */
.section-head h2::after {
  content: "";
  display: block;
  width: 58px; height: 3px;
  margin: 22px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--olive), var(--mustard));
}
.about-copy h2::after,
.approach-copy h2::after,
.contact-copy h2::after {
  content: "";
  display: block;
  width: 58px; height: 3px;
  margin: 18px 0 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--olive), var(--mustard));
}

/* Botões mais encorpados, com profundidade */
.btn { padding: 15px 30px; }
.btn-primary {
  background: linear-gradient(135deg, var(--olive), var(--olive-deep));
  box-shadow: 0 14px 26px -14px rgba(76, 89, 56, 0.65);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--olive-deep), var(--olive-deep));
  box-shadow: 0 18px 32px -14px rgba(76, 89, 56, 0.78);
  transform: translateY(-2px);
}

/* Cards: barra de destaque no topo (hover) + micro-interação no ícone */
.card { position: relative; overflow: hidden; border-radius: 20px; }
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive), var(--mustard));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card-icon { transition: transform 0.3s var(--ease); }
.card:hover .card-icon { transform: translateY(-2px) scale(1.05); }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-wm { width: min(460px, 80%); right: -14%; opacity: 0.10; }
  .hero-media { max-width: 420px; margin: 0 auto; }
  .about-grid, .approach-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 380px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .balloons { grid-template-columns: 1fr; gap: 26px; }
  .balloon-alt { margin-top: 0; }
  .modes-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .footer-brand { justify-content: center; }
  .footer-note { text-align: center; }
}

@media (max-width: 680px) {
  .section { padding: 66px 0; }
  .nav {
    position: fixed;
    top: 74px; right: 0;
    width: min(80vw, 300px);
    height: calc(100vh - 74px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    padding: 22px;
    box-shadow: -12px 0 40px -20px rgba(48, 56, 32, 0.6);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease), visibility 0s linear 0.35s;
  }
  .nav.open { transform: translateX(0); visibility: visible; transition: transform 0.35s var(--ease), visibility 0s; }
  .nav a { padding: 13px 16px; font-size: 1rem; }
  .nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about-facts { flex-direction: column; }
}

/* Acessibilidade: respeitar preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
