/* =========================================================================
   Raipe — Site institucional
   index.ejs usa Tailwind via CDN com HTML literal do Figma MCP.
   Este CSS contém apenas estilos das páginas legais (termos/privacidade)
   e overrides do mobile do index.
   ========================================================================= */
:root {
  --color-bg-deep: #00093E;
  --color-bg-navy: #031040;
  --color-blue: #4A62F1;
  --color-blue-2: #7395F2;
  --color-text: #FFFFFF;
  --color-text-soft: #DCE3FD;
  --color-text-muted: #989DBF;
  --font-display: 'DM Sans', -apple-system, sans-serif;
  --font-body: 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--color-blue); color: #fff; }

/* =========================================================================
   Páginas LEGAIS (termos, privacidade, 404)
   ========================================================================= */
.legal-page {
  background: var(--color-bg-navy);
  color: var(--color-text);
  font-family: var(--font-body);
  min-height: 100vh;
}
.legal-header {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 55px 90px 0;
}
.legal-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; max-width: 1260px; margin: 0 auto;
}
.legal-header__logo img { width: 205px; height: 48px; object-fit: contain; }
.legal-header__nav { display: flex; gap: 56px; }
.legal-header__link {
  font-family: var(--font-display); font-weight: 800;
  font-size: 21px; color: var(--color-text);
}
.legal-header__link:hover { opacity: 0.75; }

.legal-hero {
  position: relative;
  background: linear-gradient(168.10deg, #00093E 7.34%, #000A41 62.71%, #073DC6 185.15%);
  padding: 200px 90px 90px;
  overflow: hidden;
  isolation: isolate;
}
.legal-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 70% at 80% 30%, rgba(115,149,242,0.25) 0%, transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(74,98,241,0.30) 0%, transparent 70%);
}
.legal-hero__inner { position: relative; max-width: 1260px; margin: 0 auto; }
.legal-hero__eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 18px;
  color: var(--color-blue-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -2.5px;
  background: linear-gradient(107.86deg, #FFFFFF 7.05%, #7395F2 122.83%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.legal-hero__updated { font-size: 16px; color: var(--color-text-muted); }

.legal-body { background: var(--color-bg-navy); padding: 96px 0 140px; }
.legal-body__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal-body h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px;
  line-height: 1.25;
  color: #fff;
  margin: 56px 0 18px;
  letter-spacing: -0.5px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 21px;
  color: var(--color-blue-2);
  margin: 32px 0 12px;
}
.legal-body p, .legal-body ul li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-soft);
}
.legal-body p { margin-bottom: 16px; }
.legal-body ul { padding-left: 22px; list-style: disc; margin-bottom: 20px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--color-blue-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: #fff; font-weight: 700; }

.legal-footer {
  background: linear-gradient(197.70deg, #0C1B56 8.4%, #1A3BBC 105.13%);
  padding: 70px 90px 36px;
}
.legal-footer__inner {
  max-width: 1260px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 36px;
}
.legal-footer__row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.legal-footer__row img.legal-footer__logo { width: 230px; height: 54px; }
.legal-footer__socials { display: flex; gap: 28px; }
.legal-footer__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background .2s, transform .2s;
}
.legal-footer__socials a:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.legal-footer__socials img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.legal-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.legal-footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.legal-footer__links a { font-size: 15px; color: var(--color-text-soft); }
.legal-footer__copy { font-size: 15px; color: rgba(220,227,253,0.65); }

/* =========================================================================
   INDEX — layout absoluto 1440 fixo. Frame clipa o que extrapola.
   ========================================================================= */
html { overflow-x: hidden; }
.page-home { overflow-x: hidden; margin: 0; padding: 0; background: #0c1b56; }

/* =========================================================================
   RESPONSIVIDADE — 2 versões do HTML (desktop / mobile)
   ========================================================================= */

/* Desktop visível, mobile escondido (default) */
.mobile-version { display: none; }
.desktop-version { display: block; }

/* Em qualquer viewport >820 (até infinito): escala o frame proporcionalmente.
   - Em 1440: scale(1) = pixel-perfect
   - Em 1920: scale(1.33) — preenche todo viewport, SEM barras laterais
   - Em 1366: scale(0.95) — encolhe levemente
   IMPORTANTE: scale() exige NÚMERO puro. calc(length / length) → number. */
@media (min-width: 821px) {
  .desktop-version {
    transform: scale(calc(100vw / 1440px));
    transform-origin: top left;
    margin: 0 !important;
  }
  /* Body tem altura escalada do frame. Overflow hidden pra evitar 2ª scrollbar
     (html já tem scroll natural pelo conteúdo). */
  body.page-home {
    height: calc(100vw * 4175 / 1440);
    width: 100vw;
    overflow: hidden;
  }
}

/* Em viewports <=820px: esconde desktop, mostra mobile */
@media (max-width: 820px) {
  .desktop-version { display: none !important; }
  .mobile-version { display: block !important; }
  body.page-home {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background: linear-gradient(180deg, #00093E 0%, #051756 50%, #031040 100%);
  }
}

/* === VERSÃO MOBILE — Estilos polidos === */
.mobile-version {
  width: 100%;
  font-family: 'Avenir', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Header */
.m-header {
  padding: 24px 24px 0;
  background: linear-gradient(168deg, #00093E 0%, #051756 100%);
}
.m-logo { width: 132px; height: auto; display: block; }

/* === HERO === */
.m-hero {
  background: linear-gradient(168deg, #00093E 0%, #000A41 60%, #073DC6 200%);
  padding: 36px 0 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.m-hero::before {
  /* R rotacionado sutil de fundo */
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 90%;
  aspect-ratio: 1/1;
  background: url('/images/r-only.png') center/contain no-repeat;
  transform: translateX(-50%) rotate(-30deg);
  opacity: 0.06;
  pointer-events: none;
}
.m-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 9vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  background: linear-gradient(108deg, #FFFFFF 7%, #7395F2 122%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 0 24px 20px;
  position: relative;
}
.m-hero-subtitle {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 24px 16px;
  opacity: 0.95;
  position: relative;
}
.m-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 24px 36px;
  position: relative;
}
.m-badges a {
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .15s;
}
.m-badges a:active { transform: scale(0.97); }
.m-badges img {
  height: 44px;
  width: auto;
  display: block;
  clip-path: inset(2px round 8px);
}
.m-iphones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin: 0 auto -8px;
  max-width: 100%;
  padding: 0 16px;
  filter: drop-shadow(0 20px 40px rgba(0,5,30,0.6));
}
.m-iphones img {
  width: 32%;
  max-width: 130px;
  height: auto;
  display: block;
}
.m-iphone-center {
  width: 38% !important;
  max-width: 150px !important;
  z-index: 2;
  margin: 0 -6%;
  transform: translateY(-12px);
  position: relative;
}

/* === SOBRE === */
.m-sobre {
  background: #031040;
  position: relative;
}
.m-sobre-photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.m-sobre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.m-sobre-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,9,62,0.2) 0%, rgba(3,16,64,0.85) 100%);
}
.m-sobre-content {
  padding: 28px 24px 40px;
  position: relative;
  margin-top: -60px;
  z-index: 2;
}
.m-eyebrow {
  font-size: 13px;
  color: #7395F2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 8px;
}
.m-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 7.5vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #fff;
}
.m-title-gradient {
  background: linear-gradient(108deg, #FFFFFF 7%, #7395F2 122%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.m-title-dark {
  color: #0C1B56;
  background: none;
  -webkit-text-fill-color: #0C1B56;
}
.m-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.m-feature-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 0;
  padding: 4px;
  background: rgba(115,149,242,0.12);
  border: 1px solid rgba(115,149,242,0.25);
  border-radius: 50%;
  box-sizing: border-box;
}
.m-feature p {
  color: #989DBF;
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
  padding-top: 2px;
}

/* === OBSESSÃO === */
.m-obsessao {
  background: #031040;
  position: relative;
}
.m-obsessao-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.m-obsessao-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}
.m-obsessao-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,16,64,0.1) 0%, rgba(3,16,64,0.3) 50%, rgba(3,16,64,0.95) 100%);
}
.m-obsessao-content {
  padding: 24px 24px 48px;
  position: relative;
  margin-top: -80px;
  z-index: 2;
  text-align: left;
}
.m-subtitle {
  font-size: 16px;
  line-height: 1.45;
  color: #989DBF;
  margin: 0 0 28px;
}
.m-subtitle-dark {
  color: #0C1B56;
  opacity: 0.85;
}
.m-btn {
  display: inline-block;
  padding: 15px 38px;
  background: linear-gradient(135deg, #4A62F1 0%, #6B7FFF 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(74,98,241,0.5);
  transition: transform .15s, box-shadow .15s;
}
.m-btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 20px rgba(74,98,241,0.4);
}

/* === VIDA PRESTA === */
.m-vida-presta {
  background: linear-gradient(160deg, #FFFFFF 0%, #DCE3FD 50%, #7395F2 130%);
  padding: 48px 24px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.m-vida-presta .m-title-dark {
  font-size: clamp(28px, 8vw, 38px);
  letter-spacing: -0.03em;
  background: linear-gradient(210deg, #0C1B56 0%, #1A3BBC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 16px;
}
.m-iphones-vp {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 0;
}
.m-iphones-vp img {
  width: 44%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(0,9,62,0.35));
  display: block;
}
.m-iphones-vp img:first-child {
  transform: rotate(-6deg) translateY(8px);
  margin-right: -10%;
  z-index: 2;
}
.m-iphones-vp img:last-child {
  transform: rotate(7deg);
  z-index: 1;
}

/* === FAQ === */
.m-faq {
  background: #031040;
  padding: 48px 24px 56px;
}
.m-faq h2.m-title {
  text-align: center;
  margin-bottom: 32px;
}
.m-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-faq-card {
  background: rgba(71,79,111,0.20);
  border: 1px solid rgba(220,227,253,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.m-faq-card.is-open {
  background: rgba(71,79,111,0.32);
  border-color: rgba(115,149,242,0.18);
}
.m-faq-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.m-faq-card-head p {
  font-family: 'Avenir', sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.3;
  color: #DCE3FD;
  margin: 0;
}
.m-faq-card.is-open .m-faq-card-head p {
  color: #fff;
}
.m-faq-chevron {
  width: 16px;
  height: 9px;
  background: url('/images/chevron.svg') center/contain no-repeat;
  filter: brightness(2) saturate(0);
  opacity: 0.7;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-top: 8px;
}
.m-faq-card.is-open .m-faq-chevron { transform: rotate(180deg); opacity: 1; }
.m-faq-card-body {
  font-family: 'Avenir', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: #DCE3FD;
  margin: 14px 0 4px;
  display: none;
}
.m-faq-card.is-open .m-faq-card-body { display: block; }

/* === Footer === */
.m-footer {
  background: linear-gradient(197deg, #0C1B56 0%, #1A3BBC 100%);
  padding: 40px 24px 32px;
  text-align: center;
}
.m-footer-logo {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
.m-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.m-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background .2s, transform .15s;
}
.m-socials a:active { background: rgba(255,255,255,0.14); transform: scale(0.95); }
.m-socials img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
}
.m-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.m-footer-links a {
  font-size: 14px;
  color: #DCE3FD;
  text-decoration: none;
  font-weight: 500;
}
.m-footer-copy {
  font-size: 12px;
  color: rgba(220,227,253,0.65);
  margin: 0;
}

/* === REFLOW DESLIGADO (versão antiga, mantido em comment) === */
@media (max-width: 820px) and (min-width: 99999px) {
  body.page-home {
    width: 100%;
    height: auto;
    overflow-x: hidden;
  }
  /* Frame vira fluido vertical */
  .page-home > .relative[data-node-id="263:4"] {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0c1b56 0%, #00093E 100%);
  }
  /* Esconde elementos decorativos que ficam ruins em mobile (R, ellipses, blobs) */
  .page-home img[src*="hero-bg-figma"],
  .page-home img[src*="rect40016"],
  .page-home img[src*="ellipse"],
  .page-home div[data-node-id="264:1190"],
  .page-home div[data-node-id="264:1191"],
  .page-home div[data-node-id="264:1194"],
  .page-home div[data-node-id="264:1262"],
  .page-home div[data-node-id="265:1539"],
  .page-home div[data-node-id="269:283"] {
    display: none !important;
  }
  /* Todos os elementos absolutos do frame viram static */
  .page-home > .relative[data-node-id="263:4"] > * {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    inset: auto !important;
    max-width: 100% !important;
    margin: 0;
  }

  /* HEADER mobile */
  .page-home a[data-node-id="264:1254"] {
    display: block;
    width: 160px !important;
    height: auto !important;
    padding: 20px 24px 0;
  }
  .page-home a[data-node-id="264:1254"] img {
    width: 160px !important;
    height: auto !important;
    position: static !important;
  }
  /* Esconde nav links em mobile (poderia ser hamburger) */
  .page-home a[data-node-id="264:1257"],
  .page-home a[data-node-id="264:1259"],
  .page-home a[data-node-id="264:1260"] {
    display: none !important;
  }

  /* Hero título */
  .page-home div[data-node-id="264:1199"] {
    padding: 32px 24px 16px;
    font-size: 38px !important;
    line-height: 1.1 !important;
    letter-spacing: -1.5px !important;
  }
  /* Hero subtítulo */
  .page-home div[data-node-id="264:1219"] {
    padding: 12px 24px 0 !important;
    text-align: left !important;
    width: 100% !important;
  }
  /* Badges hero — empilham */
  .page-home a[aria-label*="App Store"],
  .page-home a[aria-label*="Google Play"] {
    display: inline-block !important;
    width: auto !important;
    height: 48px !important;
    margin: 12px 8px 0 24px;
  }
  .page-home a[aria-label*="App Store"] img,
  .page-home a[aria-label*="Google Play"] img {
    height: 48px !important;
    width: auto !important;
    position: static !important;
    clip-path: none !important;
  }
  /* iPhones hero — fileira embaixo */
  .page-home div[data-node-id="264:1202"],
  .page-home div[data-node-id="264:1208"],
  .page-home div[data-node-id="264:1214"],
  .page-home div[data-node-id="264:1203"],
  .page-home div[data-node-id="264:1209"],
  .page-home div[data-node-id="264:1215"] {
    display: none !important;
  }

  /* Imagem Sobre */
  .page-home div[data-node-id="265:1528"] {
    width: 100% !important;
    height: 240px !important;
    margin-top: 32px;
    overflow: hidden !important;
  }
  .page-home div[data-node-id="265:1528"] img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  /* Sobre eyebrow + título */
  .page-home div[data-node-id="264:1269"] {
    padding: 32px 24px 4px !important;
    text-align: left !important;
    width: 100% !important;
  }
  .page-home div[data-node-id="264:1268"] {
    padding: 4px 24px 24px !important;
    font-size: 30px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    width: 100% !important;
  }
  /* Features Sobre */
  .page-home div[data-node-id="265:1536"],
  .page-home div[data-node-id="265:1537"] {
    padding: 0 24px 16px 64px !important;
    width: 100% !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    position: relative !important;
  }
  .page-home div[data-node-id="273:1060"],
  .page-home div[data-node-id="273:1061"] {
    position: absolute !important;
    left: 24px !important;
    width: 24px !important;
    height: 24px !important;
  }
  .page-home div[data-node-id="273:1060"] { top: -4px !important; }
  .page-home div[data-node-id="273:1061"] { top: 60px !important; }

  /* Obsessão */
  .page-home div[data-node-id="265:1540"] {
    padding: 32px 24px 8px !important;
    font-size: 32px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    width: 100% !important;
  }
  .page-home div[data-node-id="265:1541"] {
    padding: 8px 24px 16px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    width: 100% !important;
  }
  .page-home a[data-node-id="266:13"] {
    margin: 8px 24px 32px !important;
    width: 200px !important;
    height: 44px !important;
    display: block;
  }

  /* Vida Presta */
  .page-home div[data-node-id="267:18"] {
    display: block !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #C9D6FF 70%, #7395F2 130%) !important;
    width: 100% !important;
    padding: 32px 24px;
  }
  .page-home div[data-node-id="267:246"] {
    padding: 32px 24px 8px !important;
    font-size: 32px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    width: 100% !important;
  }
  .page-home div[data-node-id="268:281"] {
    padding: 8px 24px 16px !important;
    width: 100% !important;
    text-align: left !important;
  }

  /* Esconde iPhones VP em mobile (ou poderia mostrar 1 só) */
  .page-home div[data-node-id="267:221"],
  .page-home div[data-node-id="267:222"],
  .page-home div[data-node-id="267:230"],
  .page-home div[data-node-id="267:231"] {
    display: none !important;
  }

  /* FAQ */
  .page-home div[data-node-id="269:284"] {
    padding: 32px 24px 16px !important;
    font-size: 32px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px !important;
    width: 100% !important;
    text-align: center;
  }
  #faq-list {
    width: calc(100% - 48px) !important;
    margin: 0 24px !important;
    padding: 0 !important;
  }
  .faq-card-item {
    width: 100% !important;
  }
  .faq-card-item > div {
    padding: 18px 20px !important;
  }
  .faq-card-item p {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  /* Footer */
  .page-home div[data-node-id="275:1305"] {
    width: 180px !important;
    height: auto !important;
    margin: 32px auto 16px !important;
  }
  .page-home div[data-node-id="275:1305"] img {
    position: static !important;
    width: 180px !important;
    height: auto !important;
  }
  .page-home a[aria-label="Facebook"],
  .page-home a[aria-label="Instagram"],
  .page-home a[aria-label="TikTok"],
  .page-home a[aria-label="YouTube"] {
    display: inline-block !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 8px !important;
  }
  .page-home a[aria-label="Facebook"] img,
  .page-home a[aria-label="Instagram"] img,
  .page-home a[aria-label="TikTok"] img,
  .page-home a[aria-label="YouTube"] img {
    width: 28px !important;
    height: 28px !important;
    position: static !important;
  }
  /* Container ícones sociais (wrapper invisível) */
  .page-home div[data-node-id="275:1305"] ~ a[aria-label] {
    display: inline-block;
  }
  /* Footer links e copy */
  .page-home p[data-node-id], .page-home div[data-node-id="275:1325"] {
    padding: 16px 24px !important;
    text-align: center !important;
    font-size: 14px !important;
    width: 100% !important;
    white-space: normal !important;
  }
}

/* Mobile/tablet legal pages */
@media (max-width: 1100px) {
  .legal-header { padding: 24px 24px 0; }
  .legal-header__inner { gap: 16px; }
  .legal-header__logo img { width: 160px; height: auto; }
  .legal-header__nav { display: none; }
  .legal-hero { padding: 130px 24px 56px; }
  .legal-hero__title { font-size: clamp(34px, 8vw, 56px); letter-spacing: -1.5px; }
  .legal-body { padding: 56px 0 96px; }
  .legal-body__inner { padding: 0 24px; }
  .legal-body h2 { font-size: 22px; margin: 40px 0 14px; }
  .legal-body h3 { font-size: 17px; }
  .legal-body p, .legal-body ul li { font-size: 15px; }
  .legal-footer { padding: 48px 24px 30px; }
  .legal-footer__row { flex-direction: column; gap: 24px; text-align: center; }
  .legal-footer__bottom { flex-direction: column-reverse; gap: 16px; text-align: center; }
  .legal-footer__links { justify-content: center; }
}
