/* =============================================================
   JOICE BUHL — DESIGN SYSTEM
   Índice:
   1. Reset & Base
   2. Variáveis (cores, tipografia, espaçamento)
   3. Utilitários (container, eyebrow, títulos, botões)
   4. Header & Navegação
   5. Menu mobile
   6. Hero
   7. Trajetória / Credenciais
   8. Sobre
   9. Problema e Solução
   10. Cards genéricos
   11. Serviços
   12. Como funciona
   13. Para quem é indicado
   14. Diferenciais
   15. FAQ / Accordion
   16. CTA final
   17. Contato
   18. Footer
   19. WhatsApp flutuante
   20. Animações
   21. Responsividade
   ============================================================= */

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.2; }

/* ===================== 2. VARIÁVEIS ===================== */
:root {
  --navy: #0B1E3D;
  --navy-light: #16305A;
  --navy-soft: rgba(11, 30, 61, 0.06);
  --gold: #C6A15B;
  --gold-light: #E4C989;
  --gold-dark: #A8823E;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FB;
  --text: #1C222E;
  --text-muted: #5B6472;
  --border: #E7E9EE;
  --shadow-sm: 0 4px 18px rgba(11, 30, 61, 0.05);
  --shadow-md: 0 12px 40px rgba(11, 30, 61, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 30, 61, 0.12);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --gold-gradient: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
}

/* ===================== 3. UTILITÁRIOS ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-lead {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

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

section { padding: 100px 0; position: relative; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.35s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-gradient);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(198, 161, 91, 0.35);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--navy:hover {
  transform: translateY(-3px);
  background: var(--navy-light);
  box-shadow: var(--shadow-md);
}
.btn--large { padding: 18px 36px; font-size: 1.02rem; }
.btn--small { padding: 10px 20px; font-size: 0.88rem; }

/* ===================== 4. HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 161, 91, 0.25);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.header.is-scrolled {
  box-shadow: 0 2px 24px rgba(11, 30, 61, 0.06);
  border-color: rgba(198, 161, 91, 0.4);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-text {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 8px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 300;
}
.menu-toggle span {
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== 5. MENU MOBILE ===================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.4s ease;
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__link {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
}
.mobile-menu__cta { margin-top: 12px; }

/* ===================== 6. HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content { max-width: 620px; margin-left: 32px; }

.hero__title {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 22px;
}

@media (min-width: 1025px) {
  .hero { background-image: url('d-hero.png'); }
}
@media (max-width: 1024px) {
  .hero {
    background-image: url('m-hero.png');
    background-position: center bottom;
    align-items: flex-start;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: min(80vw, 460px);
  }
}

/* ===================== 7. TRAJETÓRIA ===================== */
.trust { padding: 44px 0; background: var(--navy); }
.trust__label {
  text-align: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.trust__item { text-align: center; color: #fff; min-width: 0; }
.trust__number-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(2.8rem, 4.4vw, 3.8rem);
}
.trust__number, .trust__number-text {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-light);
  display: inline-block;
}
.trust__number-text { font-size: clamp(2.4rem, 4vw, 3.4rem); }
.trust__suffix { font-family: Georgia, serif; font-size: clamp(1.7rem, 2.9vw, 2.4rem); color: var(--gold-light); }
.trust__item p { margin-top: 10px; color: rgba(255,255,255,0.72); font-size: 1.14rem; }

/* ===================== 8. SOBRE ===================== */
.about { background: var(--bg); }
.about__inner {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas:
    "media intro"
    "media quote";
  column-gap: 64px;
  row-gap: 20px;
  align-items: start;
}
.about__intro { grid-area: intro; }
.about__quote { grid-area: quote; }
.about__media { grid-area: media; position: relative; align-self: center; }
.about__photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
}
.about__photo-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__intro p { margin-bottom: 18px; color: var(--text); font-size: 1.05rem; }
.pull-quote {
  margin-top: 34px;
  padding: 30px 34px;
  border-left: 3px solid var(--gold);
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.55;
}
.about__cta { margin-top: 34px; }

/* ===================== 9. PROBLEMA E SOLUÇÃO ===================== */
.problem { background: var(--bg-alt); }
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.problem__col {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 42px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s ease;
}
.problem__col:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: var(--shadow-lg);
}
.problem__col--solution { border-top: 3px solid var(--gold); }
.problem__heading { color: var(--navy); font-size: 1.3rem; margin-bottom: 22px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.98rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.check-list li:hover { transform: translateX(5px); color: var(--navy); }
.check-list li::before {
  position: absolute;
  left: 0; top: 1px;
  font-size: 1rem;
}
.check-list--x li::before { content: "×"; color: #B4463F; font-weight: 700; font-size: 1.2rem; top: -2px; }
.check-list--check li::before { content: "✓"; color: var(--gold-dark); font-weight: 700; }

/* ===================== 10. CARDS GENÉRICOS ===================== */
.cards-grid {
  display: grid;
  gap: 26px;
}
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid--compact { gap: 18px; }

.card {
  display: block;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFAF7 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card--highlight { border-top: 3px solid var(--gold); }
.card--highlight:hover { border-top-color: var(--gold); }
.card__index {
  position: absolute;
  top: 28px; right: 30px;
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--border);
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.14);
  color: var(--navy);
  margin-bottom: 22px;
}
.card__title { font-size: 1.12rem; color: var(--navy); margin-bottom: 12px; line-height: 1.35; }
.card__text { color: var(--text-muted); font-size: 0.95rem; }
.card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}
.card:hover .card__more { gap: 10px; }

.mini-card {
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini-card svg { flex-shrink: 0; color: var(--gold-light); }

/* ===================== 11. SERVIÇOS ===================== */
.services {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #EEF1F6 100%);
  overflow: hidden;
}
.services::before,
.services::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(rgba(11, 30, 61, 0.22) 2px, transparent 2px);
  background-size: 22px 22px;
  pointer-events: none;
}
.services::before { top: 24px; right: 24px; }
.services::after { bottom: 24px; left: 24px; }
.services .container { position: relative; z-index: 1; }
.services__cta, .section-cta { text-align: center; margin-top: 50px; }

/* ===================== 12. COMO FUNCIONA ===================== */
.process { background: var(--navy); padding: 60px 0; }
.process .eyebrow { color: var(--gold-light); }
.about .eyebrow { color: var(--gold); }
.process .section-title { color: #fff; }
.process__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 20px;
}
.process__step { text-align: center; color: #fff; padding: 0 10px; }
.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.process__step h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 400; }
.process__step p { color: rgba(255,255,255,0.68); font-size: 0.92rem; }
.process__connector {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.5), transparent);
  margin-top: 26px;
}

/* ===================== 13. PARA QUEM É INDICADO ===================== */
.audience { background: var(--bg-alt); padding-bottom: 60px; }

/* ===================== 14. DIFERENCIAIS ===================== */
.differentials { background: var(--bg); }
.differentials .card { background: var(--navy); border-color: transparent; }
.differentials .card__icon { background: rgba(255, 255, 255, 0.12); color: #fff; }
.differentials .card__title { color: #fff; font-weight: 700; }
.differentials .card__text { color: rgba(255, 255, 255, 0.75); }
.differentials .section-cta .btn--navy { background: var(--gold-gradient); color: var(--navy); }
.differentials .section-cta .btn--navy:hover { background: var(--gold-gradient); box-shadow: 0 16px 34px rgba(198, 161, 91, 0.35); }

/* ===================== 15. FAQ / ACCORDION ===================== */
.faq { background: var(--bg-alt); padding-top: 60px; }
.accordion__item {
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px; height: 20px;
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease;
}
.accordion__icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.accordion__icon::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.accordion__item.is-open .accordion__icon::after { transform: rotate(90deg); opacity: 0; }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion__panel p {
  padding: 0 26px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ===================== 16. CTA FINAL ===================== */
.cta-final { background: var(--bg); padding-bottom: 120px; }
.cta-final__box {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-final__line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 3px;
  background: var(--gold-gradient);
  border-radius: 0 0 4px 4px;
}
.cta-final__title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  max-width: 700px;
  margin: 20px auto 18px;
}
.cta-final__text {
  color: rgba(255,255,255,0.72);
  max-width: 700px;
  margin: 0 auto 34px;
}

/* ===================== 17. CONTATO ===================== */
.contact { background: var(--bg-alt); }
.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.contact__text .btn { margin-top: 30px; }
.contact__cards { display: flex; flex-direction: column; gap: 18px; }
.contact__card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.contact__card svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }
.contact__card strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 0.95rem; }
.contact__card p { color: var(--text-muted); font-size: 0.92rem; }
.contact__card a:hover { color: var(--gold-dark); }

/* ===================== 18. FOOTER ===================== */
.footer { background: #FBF8F2; color: rgba(11, 30, 61, 0.75); padding: 80px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(11, 30, 61, 0.1);
  align-items: start;
}
.footer__logo { margin-bottom: 22px; }
.footer__heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.footer__about { font-size: 0.95rem; line-height: 1.7; color: rgba(11, 30, 61, 0.65); margin-bottom: 20px; }
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(198, 161, 91, 0.5);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.footer__badge svg { color: var(--gold-dark); flex-shrink: 0; }
.footer__badge:hover {
  background: rgba(198, 161, 91, 0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__links a { font-size: 1rem; color: rgba(11, 30, 61, 0.7); transition: color 0.3s ease; }
.footer__links a:hover { color: var(--gold-dark); }

.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.footer__contact-item svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item p { font-size: 0.95rem; color: rgba(11, 30, 61, 0.7); line-height: 1.6; }
.footer__contact-item a:hover { color: var(--gold-dark); }

.footer__cta-text { font-size: 0.95rem; line-height: 1.7; color: rgba(11, 30, 61, 0.65); margin-bottom: 26px; }
.footer__whatsapp-btn {
  background: transparent;
  border: 1px solid rgba(198, 161, 91, 0.5);
  color: var(--navy);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: none;
}
.footer__whatsapp-btn:hover {
  background: rgba(198, 161, 91, 0.14);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: none;
}

.footer__bottom { text-align: center; padding: 24px 0; font-size: 0.92rem; color: rgba(11, 30, 61, 0.45); }

/* ===================== 19. WHATSAPP FLUTUANTE ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 250;
  transition: transform 0.3s ease;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===================== 20. ANIMAÇÕES ===================== */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 10px 30px rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 30px rgba(37,211,102,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(37,211,102,0.4); }
}

[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--reveal-delay, 0) * 0.12s);
}
[data-reveal="fade-up"] { transform: translateY(36px); }
[data-reveal="fade-left"] { transform: translateX(48px); }
[data-reveal="fade-right"] { transform: translateX(-48px); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Cards da seção Problema e Solução: entrada com leve rotação e profundidade */
.problem__col[data-reveal] { transition-duration: 0.9s; transform: translateX(-56px) rotate(-1.2deg) scale(0.96); }
.problem__col--solution[data-reveal] { transform: translateX(56px) rotate(1.2deg) scale(0.96); }
.problem__col[data-reveal].is-visible { transform: translate(0, 0) rotate(0deg) scale(1); }

/* ===================== 21. RESPONSIVIDADE ===================== */
@media (max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
  .hero__content { text-align: center; margin: 0 auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .about__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "media"
      "quote";
    text-align: center;
  }
  .about__media { margin: 10px 0 20px; }
  .about__photo-frame { max-width: 300px; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); text-align: center; gap: 44px 24px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__badge { justify-content: center; }
  .footer__contact-item { justify-content: center; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: flex; margin-right: 8px; }
  .process__grid { grid-template-columns: 1fr; }
  .process__connector { display: none; }
  section { padding: 72px 0; }
}

@media (max-width: 640px) {
  html { font-size: 108%; }
  .hero__content { text-align: left; margin-left: 0; margin-right: 0; }
  .hero__subtitle { margin-left: 0; margin-right: 0; }
  .about__inner { text-align: left; }
  .about__media { margin-left: auto; margin-right: auto; }
  .cards-grid--4 { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; gap: 32px; }
  .problem__grid { grid-template-columns: 1fr; }
  .cta-final__box { padding: 50px 26px; }
  .hero { padding-top: 130px; }
  .hero__title { font-size: clamp(1.7rem, 7.2vw, 2.15rem); }
  .footer__grid { grid-template-columns: 1fr; text-align: left; }
  .footer__col--brand { grid-column: auto; }
  .footer__badge { justify-content: flex-start; }
  .footer__contact-item { justify-content: flex-start; }
}
