/* ============================================================
   MARINA BANZATO — Nutrição Funcional
   Editorial · revista de wellness · fino, claro, minimalista
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Paleta */
  --wine:        #9E4D51;
  --wine-dark:   #8A4347;
  --wine-soft:   #B97C80;   /* vinho discreto p/ o fechamento da página */
  --gold:        #B08547;
  --gold-soft:   #C5A063;
  --cream:       #EBEAE5;   /* bege neutro (greige), fundos claros (= rodapé) */
  --cream-deep:  #F1E8DB;
  --ink:         #2E2622;
  --ink-soft:    #6E635A;
  --line:        #ECE5D9;
  --white:       #FFFFFF;

  /* Dourado metalizado com brilho (movimento) */
  --metal: linear-gradient(100deg, #8A6224 0%, #CFA052 22%, #F4DEA4 42%, #C99A4A 58%, #F2DBA0 76%, #9A7330 100%);
  /* Dourado estático (rico, sem movimento) */
  --gold-grad-static: linear-gradient(160deg, #C9A356 0%, #E4C57C 45%, #AE8138 100%);

  /* Tipografia — display delicada, igual à logomarca */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body:    "Poppins", system-ui, sans-serif;
  --font-script:  "Cormorant Garamond", serif;

  /* Layout */
  --container: 1180px;
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- DOURADO ---------- */
@keyframes goldShimmer { to { background-position: 220% center; } }

/* estático (sem movimento) — selos/labels, mesmo estilo do cabeçalho */
.hero-eyebrow,
.section-eyebrow,
.service-tag,
.footer-col h4,
.timeline span {
  background: var(--gold-grad-static);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* com movimento — palavras de destaque dos títulos */
.hero-title em,
.section-title em,
.final-cta-title em,
.position-index {
  background: var(--metal);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  animation: goldShimmer 7s linear infinite;
}

/* ---------- HELPERS ---------- */
.container { width: 90%; max-width: var(--container); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.section-eyebrow.centered { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.16;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  color: var(--ink);
  letter-spacing: 0.002em;
}
.section-title.centered { text-align: center; margin-inline: auto; max-width: 20ch; }

/* posicionamento: 1ª frase em uma linha só, ambas alinhadas (centro) */
.positioning-title { text-align: center; max-width: none; margin-inline: auto; line-height: 1.18; }
.positioning-title .pos-line { display: block; }
.positioning-title .pos-line:first-child { white-space: nowrap; }

/* ---------- BOTÕES (minimalistas, sem preenchimento) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--wine);
  color: var(--wine);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-align: center;
}
/* hover -> texto dourado metalizado, sem preencher */
.btn:hover {
  border-color: var(--gold);
  background-image: var(--metal);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldShimmer 6s linear infinite;
  box-shadow: 0 12px 28px -18px rgba(176, 133, 71, 0.6);
}
/* sobre fundo dourado (plano nutricional) */
.btn--ink { border-color: var(--ink); color: var(--ink); }
.btn--ink:hover {
  background-image: none;
  background-color: var(--ink);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--cream);
  color: var(--cream);
  border-color: var(--ink);
  animation: none;
  box-shadow: 0 12px 28px -16px rgba(46, 38, 34, 0.55);
}
/* sobre fundo vinho (cta final) */
.btn--light { border-color: rgba(250, 246, 240, 0.55); color: var(--cream); }
.btn--light:hover {
  background-image: none;
  background-color: var(--cream);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--wine);
  color: var(--wine);
  border-color: var(--cream);
  animation: none;
  box-shadow: none;
}
.btn-lg { padding: 1.2rem 2.8rem; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 30px -22px rgba(46, 38, 34, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.brand { display: flex; align-items: center; }
.brand-logo { height: 50px; width: auto; }

/* nav: leve, delicada, próxima */
.nav-links { display: flex; gap: 2.4rem; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 26px; height: 1.5px; background: var(--ink); transition: all 0.35s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(9rem, 17vh, 12rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(120% 90% at 88% 5%, rgba(176, 133, 71, 0.07), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(158, 77, 81, 0.05), transparent 50%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.9rem, 6.2vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0.002em;
  color: var(--ink);
}
.hero-subtitle {
  margin-top: 1.7rem;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 42ch;
  font-weight: 300;
}
.hero-actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-image { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 4px;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  z-index: -1;
}

/* ---------- SOBRE ---------- */
.about { background: var(--cream); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.about-image { position: relative; position: sticky; top: 7rem; }
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 4px;
}
.about-image::after {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  z-index: -1;
}
.about-text p { margin-bottom: 1.25rem; color: var(--ink-soft); }
.about-text .section-title { margin-bottom: 1.7rem; }

.timeline {
  list-style: none;
  margin-top: 2.6rem;
  border-left: 1px solid var(--line);
  padding-left: 1.7rem;
}
.timeline li { position: relative; padding-bottom: 1.6rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.07rem; top: 8px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
}
.timeline strong { display: block; color: var(--ink); font-weight: 500; line-height: 1.4; }
.timeline span { font-size: 0.82rem; letter-spacing: 0.04em; }

/* ---------- POSICIONAMENTO ---------- */
.positioning-head { text-align: center; margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }
.positioning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.position-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 2.6rem 2.2rem;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.position-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 30px 60px -40px rgba(46, 38, 34, 0.35);
}
.position-index {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}
.position-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  margin: 1.1rem 0 0.85rem;
  color: var(--ink);
}
.position-card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- SERVIÇOS ---------- */
.services { background: var(--white); }
.services-head { margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(2.4rem, 4vw, 3.4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card--featured {
  background: linear-gradient(150deg, #FBF6EC 0%, #F1E7D2 48%, #E8DABF 100%);
  border: 1px solid rgba(176, 133, 71, 0.32);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 56px -30px rgba(176, 133, 71, 0.5);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px -32px rgba(176, 133, 71, 0.62);
}
/* brilho radial fixo */
.service-card--featured::before {
  content: "";
  position: absolute;
  top: -45%; right: -25%;
  width: 70%; height: 130%;
  background: radial-gradient(circle, rgba(255, 252, 244, 0.45), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* faixa de luz cintilante que percorre o card */
.service-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.85) 47%, rgba(255, 248, 220, 0.25) 55%, transparent 70%);
  background-size: 250% 100%;
  background-repeat: no-repeat;
  animation: sheen 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.service-card--featured > * { position: relative; z-index: 2; }
@keyframes sheen {
  0% { background-position: 175% 0; }
  55%, 100% { background-position: -45% 0; }
}
.service-tag {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.1rem;
}
/* tag do card dourado: vinho sólido (metalizado some sobre o ouro) */
.service-card--featured .service-tag {
  background: none;
  -webkit-text-fill-color: var(--wine);
  color: var(--wine);
  animation: none;
  position: relative;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.1rem;
  color: inherit;
  position: relative;
}
.service-card p { margin-bottom: 2.2rem; color: var(--ink-soft); position: relative; }
.service-card--featured p { color: rgba(46, 38, 34, 0.82); }
.service-card .btn { margin-top: auto; position: relative; }

/* ---------- PROCESSO ---------- */
.process { background: var(--cream); }
.process-head { text-align: center; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.process-step { position: relative; padding-top: 1rem; }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.9rem; right: -0.7rem;
  width: 1.4rem; height: 1px;
  background: var(--gold-soft);
}
.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  color: var(--wine);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.process-step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq-head { position: sticky; top: 7rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary { color: var(--wine); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease), padding 0.45s var(--ease); }
.faq-item[open] .faq-body { max-height: 520px; padding-top: 1rem; }
.faq-body p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- NEWSLETTER ---------- */
.newsletter { background: var(--cream); }
.newsletter-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.6rem, 5vw, 4rem); }
.newsletter-intro { color: var(--ink-soft); margin-top: 1.1rem; }
.newsletter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 26px 54px -34px rgba(46, 38, 34, 0.35);
}
.news-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream-deep);
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.news-card:hover .news-thumb img { transform: scale(1.05); }
.news-body {
  padding: 1.8rem 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.news-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.news-link {
  margin-top: auto;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.news-link:hover { color: var(--gold); gap: 0.75rem; }
.newsletter-cta {
  margin-top: clamp(2.6rem, 4vw, 3.4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.news-all {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.news-all:hover { color: var(--wine); border-color: var(--gold); }

/* ---------- CTA FINAL (vinho discreto) ---------- */
.final-cta {
  background:
    radial-gradient(100% 130% at 50% 0%, rgba(176, 133, 71, 0.14), transparent 60%),
    var(--wine-soft);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner { max-width: 760px; margin-inline: auto; position: relative; }
.final-cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: 0.002em;
  margin-bottom: 1.3rem;
}
.final-cta-title em { font-style: italic; }
.final-cta-sub { color: rgba(250, 246, 240, 0.9); font-size: 1.08rem; margin-bottom: 2.6rem; }

/* ---------- RODAPÉ ---------- */
.site-footer { background: var(--cream); padding-top: 4.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.footer-logo { height: 92px; width: auto; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-col h4 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col address {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--wine); }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding: 1.8rem 0; }
.footer-legal p { font-size: 0.76rem; color: var(--ink-soft); }

/* ---------- WHATSAPP FLUTUANTE (ícone) ---------- */
.float-wa {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 12px 30px -10px rgba(158, 77, 81, 0.65);
  transition: all 0.35s var(--ease);
}
.float-wa:hover { background: var(--wine-dark); transform: translateY(-3px) scale(1.05); }
.float-wa svg { width: 28px; height: 28px; display: block; }

/* ---------- REVEAL (scroll) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { max-width: 430px; margin-top: 0.5rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { position: relative; top: 0; max-width: 380px; }
  .positioning-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-head { position: relative; top: 0; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 50px -30px rgba(46, 38, 34, 0.5);
    z-index: 105;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 110; }
  .header-cta { display: none; }
  .brand-logo { height: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .newsletter-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-cols { grid-template-columns: 1fr; }

  /* ---- MOBILE: tudo centralizado ---- */
  .hero-content,
  .hero-eyebrow,
  .about-text,
  .section-eyebrow,
  .section-title,
  .services-head,
  .position-card,
  .process-step,
  .faq-head,
  .newsletter-head,
  .news-card,
  .footer-brand,
  .footer-col,
  .footer-legal { text-align: center; }

  /* posicionamento: reduz p/ "Seu corpo tem uma lógica." caber em 1 linha */
  .positioning-title { font-size: clamp(1.45rem, 6.2vw, 2rem); }

  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image, .about-image { margin-left: auto; margin-right: auto; }

  .service-card { align-items: center; }
  .news-body { align-items: center; }

  .process-num { margin-left: auto; margin-right: auto; }

  .timeline { border-left: none; padding-left: 0; margin-inline: auto; }
  .timeline li { padding-bottom: 1.4rem; }
  .timeline-dot { display: none; }

  .faq-item summary { justify-content: center; gap: 0.7rem; }

  .footer-logo { margin: 0 auto; }
  .footer-legal { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-title em, .section-title em, .final-cta-title em,
  .position-index, .btn:hover, .service-card--featured::after { animation: none; }
  html { scroll-behavior: auto; }
}
