/* =========================================================
   ARAPUÃ — Identidade Visual Oficial
   Cores: #0D2B8E primário · #1A3FAF secundário · #F5C800 âmbar
   ========================================================= */

:root {
  --azul-primario: #0D2B8E;
  --azul-secundario: #1A3FAF;
  --azul-claro: #2952D4;
  --azul-mais-claro: #4A75E8;
  --ambar: #F5C800;
  --ambar-escuro: #D4AB00;
  --neutro: #F5F5F5;
  --branco: #FFFFFF;
  --texto: #1A1A2E;
  --texto-suave: #5A5A6E;
  --borda: #E5E7EB;

  --gradiente-hero: linear-gradient(180deg,
    #020616 0%,
    #03081F 15%,
    #050E32 35%,
    #0A1849 60%,
    #0D2B8E 85%,
    #1A3FAF 100%);

  --gradiente-dark: linear-gradient(180deg, #020616 0%, #0A1849 60%, #0D2B8E 100%);

  --sombra-card: 0 10px 40px rgba(13, 43, 142, 0.08);
  --sombra-card-hover: 0 20px 60px rgba(13, 43, 142, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--texto);
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

html { overflow-x: hidden; }

.trust-band .orbs { display: none; }

main, section, .pilares-wrap, footer, .hero-divider, .trust-band {
  position: relative;
  z-index: 1;
}

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

/* ============ TIPOGRAFIA ============ */
h1, h2, h3, h4 {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.script {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-weight: 500;
  color: var(--ambar);
}

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

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(2, 6, 22, 0.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}

.logo::after { display: none; }

.logo img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), filter 0.3s;
}

.logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(245,200,0,0.4));
}

.footer .logo img { height: 38px; }

@media (max-width: 768px) {
  .logo img { height: 32px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--branco);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

.nav a:hover { opacity: 1; color: var(--ambar); }

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 2px;
  background: var(--ambar);
  border-radius: 2px;
}

.btn-entrar {
  border: 1.5px solid var(--ambar);
  color: var(--ambar);
  padding: 10px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-entrar:hover {
  background: var(--ambar);
  color: var(--azul-primario);
}

.header-search {
  background: none;
  border: none;
  color: var(--branco);
  cursor: pointer;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.header-search:hover { background: rgba(255,255,255,0.08); }

.header-search svg { width: 20px; height: 20px; }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--branco);
  font-size: 28px;
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  background-color: #020616;
  background-image: url('../img/ara-hero.png?v=4');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  color: var(--branco);
  padding: 300px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: clamp(580px, 46vw, 820px);
  aspect-ratio: 1920 / 880;
  display: flex;
  align-items: center;
}

.hero > .container { width: 100%; }

@media (max-width: 980px) {
  .hero { aspect-ratio: auto; min-height: 720px; padding: 180px 0 80px; }
}

/* Fade artificial removido — a base do hero é apenas a imagem */

.hero::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,117,232,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(74,117,232,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,117,232,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 50%, black 0%, transparent 70%);
}

.hero-tech-lines {
  position: absolute;
  top: 40%;
  left: 35%;
  width: 50%;
  height: 40%;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.hero-tech-lines::before,
.hero-tech-lines::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 10% 30%, var(--azul-mais-claro), transparent),
    radial-gradient(1.5px 1.5px at 25% 60%, var(--azul-mais-claro), transparent),
    radial-gradient(2px 2px at 45% 20%, #6890FF, transparent),
    radial-gradient(1px 1px at 60% 80%, var(--azul-mais-claro), transparent),
    radial-gradient(1.5px 1.5px at 80% 40%, #6890FF, transparent),
    radial-gradient(2px 2px at 15% 75%, #6890FF, transparent),
    radial-gradient(1px 1px at 90% 65%, var(--azul-mais-claro), transparent);
}

.hero-tech-lines::after {
  background:
    linear-gradient(115deg, transparent 38%, rgba(104,144,255,0.4) 39%, rgba(104,144,255,0.4) 40%, transparent 41%),
    linear-gradient(115deg, transparent 48%, rgba(104,144,255,0.3) 49%, rgba(104,144,255,0.3) 50%, transparent 51%),
    linear-gradient(115deg, transparent 58%, rgba(104,144,255,0.35) 59%, rgba(104,144,255,0.35) 60%, transparent 61%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--ambar);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--ambar);
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 .destaque {
  color: var(--ambar);
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.88;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-sub .script {
  font-size: 28px;
  display: inline-block;
  transform: rotate(-2deg);
  margin: 0 4px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--ambar);
  color: var(--azul-primario);
}

.btn-primary:hover {
  background: #FFD626;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 200, 0, 0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--branco);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--branco);
}

.btn-dark {
  background: #0A1849;
  color: var(--branco);
}

.btn-dark:hover { background: #050B2E; transform: translateY(-2px); }

.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Elementos decorativos não aparecem mais — a imagem da Ara já tem efeitos digitais */
.hero .orbs,
.hero .hero-grid-bg,
.hero .hero-tech-lines,
.hero .tech-svg { display: none; }

/* Hero — imagem é background do .hero. .hero-visual serve só como âncora pro badge */
.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: 920px;
  pointer-events: none;
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image { display: none; }
.hero-image-placeholder { display: none !important; }

/* Imagem mobile do hero — só aparece em telas pequenas */
.hero-image-mobile { display: none; }

.hero-badge {
  position: absolute;
  top: 32%;
  right: 12%;
  pointer-events: auto;
  background: rgba(5,11,46,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 22px 24px;
  border-radius: 16px;
  max-width: 260px;
  font-size: 15px;
  line-height: 1.45;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 5;
}

.hero-badge-icon {
  width: 40px; height: 40px;
  background: rgba(245,200,0,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ambar);
}

.hero-badge-icon svg { width: 22px; height: 22px; }

.hero-badge strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-badge a {
  color: var(--ambar);
  font-weight: 600;
  text-decoration: none;
}

/* ============ PILARES (3 cards) ============ */
.pilares-wrap {
  position: relative;
  margin-top: 40px;
  margin-bottom: 80px;
  z-index: 5;
}

/* Glow neon embaixo do bloco de pilares (estilo Nike ref) */
.pilares-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 8%;
  right: 8%;
  height: 80px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,200,0,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(74,117,232,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(13,43,142,0.45) 0%, transparent 50%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
  animation: pilaresGlow 6s ease-in-out infinite;
}

@keyframes pilaresGlow {
  0%, 100% { opacity: 0.85; transform: scaleX(1); }
  50%      { opacity: 1;    transform: scaleX(1.04); }
}

/* Faixa marquee */
.hero-divider {
  position: relative;
  width: 100%;
  height: 84px;
  background: linear-gradient(180deg,
    #020616 0%,
    #050E32 40%,
    #08164A 70%,
    #0A1849 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow:
    0 -1px 0 rgba(245,200,0,0.1),
    inset 0 -1px 0 rgba(74,117,232,0.2),
    0 30px 60px -20px rgba(13,43,142,0.4);
  z-index: 4;
}

/* Linhas neon top/bottom */
.divider-glow {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(74,117,232,0.4) 15%,
    var(--ambar) 50%,
    rgba(74,117,232,0.4) 85%,
    transparent 100%);
  background-size: 200% 100%;
  animation: dividerShimmer 6s linear infinite;
  filter: blur(0.5px);
}

.divider-glow-top { top: 0; box-shadow: 0 0 24px rgba(245,200,0,0.4); }
.divider-glow-bottom {
  bottom: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(74,117,232,0.6) 30%,
    rgba(104,144,255,0.8) 50%,
    rgba(74,117,232,0.6) 70%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(74,117,232,0.5);
  animation-direction: reverse;
}

@keyframes dividerShimmer {
  to { background-position: -200% 0; }
}

/* Partículas flutuantes */
.divider-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ambar);
  box-shadow: 0 0 12px rgba(245,200,0,0.8), 0 0 24px rgba(245,200,0,0.4);
  animation: particleFloat 5s ease-in-out infinite;
}

.divider-particle.p1 { top: 18px;  left: 8%;  animation-delay: 0s;    background: var(--ambar); }
.divider-particle.p2 { top: 60px;  left: 22%; animation-delay: -1s;   background: #6890FF; box-shadow: 0 0 12px rgba(104,144,255,0.9), 0 0 24px rgba(104,144,255,0.5); }
.divider-particle.p3 { top: 30px;  left: 38%; animation-delay: -2s;   background: var(--ambar); }
.divider-particle.p4 { top: 52px;  left: 55%; animation-delay: -3s;   background: #6890FF; box-shadow: 0 0 12px rgba(104,144,255,0.9), 0 0 24px rgba(104,144,255,0.5); width: 5px; height: 5px; }
.divider-particle.p5 { top: 14px;  left: 70%; animation-delay: -1.5s; background: var(--ambar); }
.divider-particle.p6 { top: 56px;  left: 85%; animation-delay: -2.5s; background: #6890FF; box-shadow: 0 0 12px rgba(104,144,255,0.9), 0 0 24px rgba(104,144,255,0.5); }
.divider-particle.p7 { top: 26px;  left: 93%; animation-delay: -0.5s; background: var(--ambar); width: 3px; height: 3px; }

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50%      { transform: translate(8px, -10px) scale(1.3); opacity: 1; }
}

/* Marquee de texto — loop perfeito */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  display: flex;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  padding: 12px 32px 12px 0;
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
}

.hero-divider:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.m-item {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  font-style: italic;
  transition: color 0.3s;
}

.m-item.m-accent {
  background: linear-gradient(90deg, var(--ambar) 0%, #FFD626 50%, var(--ambar) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s linear infinite;
  filter: drop-shadow(0 0 12px rgba(245,200,0,0.4));
}

@keyframes textShine {
  to { background-position: 200% center; }
}

.m-dot {
  color: rgba(245,200,0,0.7);
  font-weight: 900;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
}

.m-dot svg {
  color: rgba(104,144,255,0.85);
  filter: drop-shadow(0 0 8px rgba(104,144,255,0.6));
}

/* ====== Seção "A nova Arapuã" (vídeo vertical) ====== */
.nova-arapua {
  position: relative;
  overflow: hidden;
}

.nova-arapua::before, .nova-arapua::after { display: none; }

.timeline-section::before { display: none; }

/* Grid dos 3 pilares (A Ara) — responsivo */
.pilares-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .pilares-3 { grid-template-columns: 1fr; }
}

/* ====== TRAIT CARDS (página A Ara) ====== */
.trait-card {
  padding: 32px !important;
  text-align: left;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
  border: 1px solid var(--borda);
}

.trait-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,43,142,0.15);
  border-color: rgba(13,43,142,0.2);
}

.trait-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 6px 16px rgba(13,43,142,0.2));
  transition: transform 0.4s ease;
}

.trait-card:hover .trait-icon {
  transform: rotate(-5deg) scale(1.08);
}

.trait-icon svg { width: 100%; height: 100%; display: block; }

.trait-card h3 {
  font-size: 20px;
  color: var(--azul-primario);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.trait-card p {
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.55;
  margin: 0;
}

/* ====== ELEMENTOS DECORATIVOS DESABILITADOS (fundo branco puro) ====== */
.bg-decor,
.phone-blob,
.float-3d,
.pilares-wrap::after { display: none !important; }

.bg-decor-old {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-decor > * { position: absolute; }

.nova-arapua .container,
.timeline-section .container { position: relative; z-index: 2; }

/* Hexágonos */
.d-hex {
  width: 90px; height: 90px;
  animation: hexFloat 14s ease-in-out infinite;
}

.d-hex-1 { top: 8%;  left: 4%;  animation-delay: 0s; }
.d-hex-2 { top: 65%; right: 5%; animation-delay: -4s; width: 70px; height: 70px; transform: rotate(15deg); }
.d-hex-3 { top: 28%; right: 8%; animation-delay: -8s; width: 110px; height: 110px; }

@keyframes hexFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(10px,-14px) rotate(8deg); }
}

/* Ícones flutuantes em SVG com gradient azul */
.d-icon {
  width: 64px; height: 64px;
  opacity: 0.55;
  animation: iconFloat 10s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(13,43,142,0.18));
}

.d-icon svg { width: 100%; height: 100%; }

.d-icon-shield { top: 14%; left: 12%; animation-delay: 0s; }
.d-icon-bulb   { top: 70%; left: 7%;  animation-delay: -3s; width: 56px; height: 56px; opacity: 0.4; }
.d-icon-bolt   { top: 8%;  right: 14%; animation-delay: -6s; width: 56px; height: 56px; opacity: 0.5; }

@keyframes iconFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-6px,-12px) scale(1.06); }
}

/* Linhas onduladas */
.d-line {
  width: 240px; height: 50px;
  opacity: 0.7;
}

.d-line-1 { top: 42%; left: -40px; }
.d-line-2 { bottom: 14%; right: -30px; width: 200px; }

/* Sparkles */
.d-sparkle {
  font-size: 18px;
  color: var(--ambar);
  text-shadow: 0 0 8px rgba(245,200,0,0.5);
  opacity: 0.7;
  animation: sparkleTwinkle 3s ease-in-out infinite;
  font-weight: 700;
}

.d-sparkle.s-1 { top: 20%; left: 38%; animation-delay: 0s;   color: var(--azul-primario); text-shadow: 0 0 6px rgba(13,43,142,0.3); }
.d-sparkle.s-2 { top: 55%; left: 28%; animation-delay: -0.8s; }
.d-sparkle.s-3 { top: 30%; right: 28%; animation-delay: -1.4s; color: var(--azul-secundario); font-size: 14px; }
.d-sparkle.s-4 { bottom: 28%; right: 22%; animation-delay: -2s; color: var(--azul-primario); font-size: 14px; }
.d-sparkle.s-5 { bottom: 12%; left: 18%; animation-delay: -1.6s; font-size: 14px; }

@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

/* Anéis tech */
.d-ring {
  border-radius: 50%;
  border: 1.5px solid rgba(13,43,142,0.18);
  animation: ringPulse 5s ease-in-out infinite;
}

.d-ring-1 { width: 140px; height: 140px; top: 55%; right: 18%; border-color: rgba(13,43,142,0.2); }
.d-ring-2 { width: 80px;  height: 80px;  bottom: 18%; left: 35%; border-color: rgba(245,200,0,0.35); border-style: dashed; animation-delay: -2s; }

@keyframes ringPulse {
  0%, 100% { transform: scale(1);   opacity: 0.6; }
  50%      { transform: scale(1.1); opacity: 1;   }
}

.split-vertical {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title .ambar { color: var(--ambar-escuro); font-style: italic; }

.tagline-script {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: var(--ambar-escuro);
  margin-top: 24px;
  transform: rotate(-2deg);
  display: inline-block;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--azul-primario) !important;
  border: 1.5px solid rgba(13,43,142,0.3);
}

.btn-ghost-dark:hover {
  border-color: var(--azul-primario);
  background: rgba(13,43,142,0.04);
}

/* Phone mockup */
.video-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Blob gradient atrás do phone (estilo Nike) */
.phone-blob {
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 540px;
  background:
    radial-gradient(circle at 30% 40%, rgba(74,117,232,0.55) 0%, transparent 55%),
    radial-gradient(circle at 80% 60%, rgba(245,200,0,0.45) 0%, transparent 55%),
    radial-gradient(circle at 50% 80%, rgba(13,43,142,0.4) 0%, transparent 60%);
  filter: blur(45px);
  border-radius: 50%;
  z-index: 0;
  animation: blobMorph 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobMorph {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg);   border-radius: 50% 45% 55% 50% / 50% 55% 45% 50%; }
  33%      { transform: translateX(-50%) scale(1.05) rotate(8deg); border-radius: 55% 45% 50% 55% / 45% 50% 55% 50%; }
  66%      { transform: translateX(-50%) scale(0.97) rotate(-6deg); border-radius: 45% 55% 50% 45% / 55% 45% 50% 55%; }
}

/* Elementos 3D flutuantes */
.float-3d {
  position: absolute;
  z-index: 3;
  filter:
    drop-shadow(0 12px 24px rgba(13,43,142,0.35))
    drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  animation: float3D 6s ease-in-out infinite;
}

.float-3d svg { width: 100%; height: 100%; display: block; }

.float-3d-chat {
  width: 88px; height: 88px;
  top: -20px; right: -50px;
  animation-delay: 0s;
  transform: rotate(8deg);
}

.float-3d-shield {
  width: 78px; height: 78px;
  bottom: 70px; right: -36px;
  animation-delay: -2s;
  transform: rotate(-12deg);
  filter:
    drop-shadow(0 12px 24px rgba(245,200,0,0.4))
    drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.float-3d-card {
  width: 108px; height: 76px;
  bottom: 30px; left: -50px;
  animation-delay: -3.5s;
  transform: rotate(-10deg);
}

@keyframes float3D {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-14px) rotate(calc(var(--r, 0deg) + 4deg)); }
}

.float-3d-chat   { --r: 8deg; }
.float-3d-shield { --r: -12deg; }
.float-3d-card   { --r: -10deg; }

.phone-frame {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 16;
  border-radius: 42px;
  background: linear-gradient(145deg, #0A1849 0%, #020616 100%);
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(13,43,142,0.3),
    0 0 0 1px rgba(245,200,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 0 2px rgba(74,117,232,0.2);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  overflow: hidden;
  z-index: 2;
}

.phone-frame:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 100px rgba(13,43,142,0.4),
    0 0 0 1px rgba(245,200,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 0 0 2px rgba(74,117,232,0.3);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-notch::after {
  content: '';
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1A1F4A;
  box-shadow: inset 0 0 2px rgba(74,117,232,0.5);
}

.phone-video {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  display: block;
  background: #020616;
}

.phone-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: linear-gradient(135deg, rgba(245,200,0,0.95) 0%, #FFD626 100%);
  color: var(--azul-primario);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 40px rgba(245,200,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  animation: phonePlayPulse 2.4s ease-in-out infinite;
}

.phone-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow:
    0 20px 50px rgba(245,200,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.phone-play.playing { opacity: 0; pointer-events: none; }

@keyframes phonePlayPulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(245,200,0,0.4), 0 0 0 0 rgba(245,200,0,0.6), inset 0 1px 0 rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 16px 40px rgba(245,200,0,0.4), 0 0 0 24px rgba(245,200,0,0), inset 0 1px 0 rgba(255,255,255,0.3); }
}

.phone-glow {
  position: absolute;
  inset: -40px;
  border-radius: 60px;
  background: radial-gradient(ellipse at center, rgba(74,117,232,0.4) 0%, rgba(245,200,0,0.15) 40%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: phoneGlow 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes phoneGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.08); }
}

.phone-caption {
  text-align: center;
  position: relative;
  z-index: 2;
}

.caption-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ambar-escuro);
  background: rgba(245,200,0,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
  border: 1px solid rgba(245,200,0,0.25);
}

.phone-caption strong {
  display: block;
  color: var(--azul-primario);
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .split-vertical { grid-template-columns: 1fr; }
  .phone-frame { width: 280px; }
}

/* SEÇÃO SIGA A ARA DESATIVADA (manter código por enquanto) */
.siga-ara { display: none !important; }

.siga-ara-hidden {
  position: relative;
  padding: 100px 0 120px;
  background:
    linear-gradient(135deg, #02061A 0%, #050E32 50%, #0A1849 100%);
  overflow: hidden;
  color: #fff;
}

.siga-ara-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ig-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.75;
  animation: orbFloat 16s ease-in-out infinite;
}

.ig-orb-1 { width: 380px; height: 380px; background: #4A75E8;        top: -15%; right: -8%;  animation-delay: 0s; }
.ig-orb-2 { width: 320px; height: 320px; background: rgba(245,200,0,0.5); bottom: -10%; left: 5%; animation-delay: -6s; }
.ig-orb-3 { width: 280px; height: 280px; background: #0D2B8E;        top: 40%; left: 38%; animation-delay: -10s; opacity: 0.5; }

.siga-ara-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.siga-ara-text { color: #fff; }
.siga-ara-text .eyebrow { color: var(--ambar); }
.siga-ara-text .eyebrow::before { background: var(--ambar); }
.section-title.light { color: #fff; }
.section-title .ambar {
  background: linear-gradient(135deg, var(--ambar) 0%, #FFE055 50%, var(--ambar) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  animation: gradientShift 4s linear infinite;
}
.section-lead-light {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 32px;
}

/* O card neon */
.ig-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.ig-card {
  position: relative;
  width: 340px;
  padding: 36px 32px 32px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  text-align: center;
  color: #fff;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
  z-index: 2;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Borda neon gradient animada */
.ig-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg,
    #F5C800 0%,
    #4A75E8 25%,
    #0D2B8E 50%,
    #4A75E8 75%,
    #F5C800 100%);
  background-size: 300% 300%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
  animation: borderShift 6s linear infinite;
}

@keyframes borderShift {
  to { background-position: 300% 0; }
}

/* Glow neon fora do card */
.ig-card-glow {
  position: absolute;
  inset: -30px;
  border-radius: 60px;
  background:
    radial-gradient(circle at 20% 20%, rgba(245,200,0,0.55) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(74,117,232,0.65) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(13,43,142,0.5) 0%, transparent 55%);
  filter: blur(35px);
  z-index: -1;
  animation: igGlow 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes igGlow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}

.ig-card-logo {
  width: 56px; height: 56px;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 16px rgba(245,200,0,0.45));
}

.ig-card-logo svg { width: 100%; height: 100%; }

.ig-card-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  margin: 12px auto 24px;
  padding: 3px;
  background: linear-gradient(135deg, #F5C800 0%, #4A75E8 50%, #0D2B8E 100%);
  position: relative;
  box-shadow: 0 0 40px rgba(74,117,232,0.55);
}

.ig-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 25%;
  border-radius: 50%;
  background: #050E32;
  display: block;
}

.ig-card-name {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.ig-card-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 20px;
}

.ig-card-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}

.ig-card-handle svg { color: var(--ambar); }

.ig-card-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.ig-card-stats > div:not(.ig-stat-divider) {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.ig-card-stats strong {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.ig-card-stats span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.ig-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  flex: 0;
}

.ig-card-email {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

@media (max-width: 980px) {
  .siga-ara-grid { grid-template-columns: 1fr; gap: 48px; }
  .ig-card { width: 300px; }
}

.pilares {
  background: var(--branco);
  border-radius: var(--radius-xl);
  box-shadow: var(--sombra-card);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.pilar {
  padding: 28px 28px 26px;
  border-right: 1px solid var(--borda);
  transition: background 0.2s;
}

.pilar:last-child { border-right: none; }

.pilar:hover { background: #FAFBFF; }

.pilar-icon {
  width: 56px; height: 56px;
  border-radius: 0;
  background: transparent !important;
  color: var(--azul-primario);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.pilar-icon svg { width: 52px; height: 52px; stroke-width: 1.6; }

.pilar h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--azul-primario);
}

.pilar p {
  font-size: 15px;
  color: var(--texto-suave);
  margin-bottom: 18px;
  line-height: 1.5;
}

.pilar-link {
  color: var(--azul-primario);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.pilar-link:hover { gap: 10px; }

/* ============ SECTION GENERICA ============ */
section { padding: 72px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--azul-primario);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--ambar);
}

.eyebrow.light { color: var(--ambar); }

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--azul-primario);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title .azul-claro { color: var(--azul-secundario); }
.section-title .ambar { color: var(--ambar-escuro); }

.section-lead {
  font-size: 17px;
  color: var(--texto-suave);
  max-width: 560px;
  margin-bottom: 32px;
}

/* ============ CONTEUDO BLOCK (split) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradiente-dark);
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(13, 43, 142, 0.25);
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(74,117,232,0.3) 0%, transparent 60%);
}

.play-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 24px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.play-circle:hover { background: rgba(255,255,255,0.25); transform: scale(1.05); }

.video-label {
  position: absolute;
  bottom: 24px; right: 28px;
  color: var(--branco);
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.dot-decor {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #FF3535 0%, rgba(255,53,53,0.4) 40%, transparent 75%);
  opacity: 0.85;
  top: -50px;
  left: 18%;
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}

.video-plug {
  position: absolute;
  width: 120px;
  color: rgba(104,144,255,0.85);
  filter: drop-shadow(0 0 16px rgba(104,144,255,0.6));
  z-index: 2;
}

.video-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5,11,46,0.7) 0%, rgba(13,43,142,0.5) 100%);
}

/* ============ TIMELINE ============ */
.timeline-section {
  background: transparent;
  padding: 24px 0 80px;
  position: relative;
  overflow: hidden;
}

.nova-arapua { padding-bottom: 40px; }

.timeline-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1000px;
  height: 380px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13,43,142,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(245,200,0,0.1) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.timeline-section .container { position: relative; z-index: 2; }

/* Linhas tech decorativas */
.tech-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.tech-deco svg { display: block; opacity: 0.5; }

.timeline {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto
    minmax(0, 130px) minmax(0, 1fr) auto
    minmax(0, 130px) minmax(0, 1fr) auto
    minmax(0, 130px) minmax(0, 1fr);
  gap: 12px;
  position: relative;
  margin-top: 32px;
  align-items: center;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6%; right: 6%;
  height: 2px;
  background: repeating-linear-gradient(to right,
    var(--ambar-escuro) 0, var(--ambar-escuro) 6px,
    transparent 6px, transparent 14px);
  z-index: 0;
  transform: translateY(-8px);
  opacity: 0.6;
}

.tl-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ambar-escuro);
  font-size: 22px;
  font-weight: 800;
  position: relative;
  z-index: 3;
  padding: 0 4px;
}

.tl-text-item {
  text-align: left;
  position: relative;
  z-index: 2;
}

.tl-text-item .tl-year {
  font-size: 28px;
  font-weight: 800;
  color: var(--azul-primario);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.tl-text-item .tl-text {
  font-size: 14px;
  color: var(--texto-suave);
  line-height: 1.5;
}

.tl-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background-color: var(--azul-primario);
  background-image: var(--gradiente-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(13,43,142,0.2);
  border: 4px solid var(--branco);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  font-style: italic;
}

.tl-future {
  background: var(--branco);
  border: 2px solid var(--ambar);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  position: relative;
  z-index: 3;
}

.tl-future .tl-icon {
  width: 36px; height: 36px;
  background: rgba(13,43,142,0.06);
  border-radius: 10px;
  color: var(--azul-primario);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.tl-future .tl-icon svg { width: 22px; height: 22px; }

.tl-future .tl-year {
  font-size: 18px;
  font-weight: 800;
  color: var(--azul-primario);
  margin-bottom: 4px;
}

.tl-future .tl-text {
  font-size: 13px;
  color: var(--texto-suave);
  line-height: 1.5;
}

.tl-future .tl-text em {
  color: var(--ambar-escuro);
  font-style: italic;
  font-weight: 600;
}

/* ============ BARRA INSTITUCIONAL (Confiança) ============ */
.trust-band {
  background: #020616;
  color: var(--branco);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  margin-bottom: -1px;
}

.trust-band::before { display: none; }

.footer {
  background: linear-gradient(180deg,
    #020616 0%,
    #050E32 40%,
    #07143F 65%,
    #091850 85%,
    #0A1849 100%);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  position: relative;
}

/* Linha divisória entre logo+nav e o restante do footer */
.footer-nav {
  position: relative;
}

.footer-nav::after { display: none; }

.footer-social {
  position: relative;
  padding-top: 16px;
}

/* Linha sutil acima do copyright */
.footer-copy {
  position: relative;
  padding-top: 16px;
}

.footer-copy::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.trust-headline {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.trust-shield {
  width: 88px; height: 88px;
  border-radius: 20px;
  background: var(--ambar);
  color: var(--azul-primario);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-shield svg { width: 44px; height: 44px; }

.trust-headline h3 {
  font-size: 28px;
  color: var(--branco);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.trust-headline h3 span { color: var(--ambar); }

.trust-item {
  font-size: 14px;
  line-height: 1.55;
  color: var(--branco);
}

.trust-item .ti-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--branco);
}

.trust-item .ti-icon svg { width: 22px; height: 22px; }

.trust-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 15px;
}

.trust-item p { opacity: 0.78; margin: 0; }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg,
    #020616 0%,
    #050E32 40%,
    #07143F 65%,
    #091850 85%,
    #0A1849 100%);
  color: var(--branco);
  padding: 40px 0 28px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Linhas brancas top/bottom estilo marquee */
.footer::before,
.footer::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.35) 15%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0.35) 85%,
    transparent 100%);
  pointer-events: none;
}

.footer::before { top: 0; }
.footer::after { bottom: 0; opacity: 0.5; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a { opacity: 0.85; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 1; color: var(--ambar); }

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--branco);
}

.footer-social a:hover { color: var(--ambar); transform: translateY(-2px); }

.footer-social a svg { width: 20px; height: 20px; }

.footer-copy {
  opacity: 0.7;
  font-size: 13px;
  text-align: center;
  width: 100%;
}

/* ====== CONTEÚDO (3 pilares expandidos) ====== */
.conteudo {
  padding: 90px 0 80px;
  background: var(--branco);
  position: relative;
}

.conteudo-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.conteudo-head-tag {
  margin-top: 18px;
  font-size: 15px;
  color: var(--texto-suave);
}

.conteudo-head-tag strong { color: var(--azul-primario); }

.conteudo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.conteudo-card {
  position: relative;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s, border-color 0.4s;
  transform-style: preserve-3d;
}

.conteudo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(13,43,142,0.16);
  border-color: rgba(13,43,142,0.18);
}

/* Glow colorido no topo de cada card */
.cc-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.cc-glow-protege { background: radial-gradient(circle, rgba(74,117,232,0.6), transparent 70%); }
.cc-glow-explica { background: radial-gradient(circle, rgba(245,200,0,0.5), transparent 70%); }
.cc-glow-dica    { background: radial-gradient(circle, rgba(13,43,142,0.55), transparent 70%); }

.conteudo-card:hover .cc-glow { opacity: 1; }

.cc-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(13,43,142,0.06), rgba(74,117,232,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.cc-icon svg {
  width: 36px; height: 36px;
  filter: drop-shadow(0 4px 10px rgba(13,43,142,0.2));
}

.conteudo-card:hover .cc-icon { transform: scale(1.08) rotate(-4deg); }

.cc-pilar {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ambar-escuro);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.conteudo-card h3 {
  font-size: 22px;
  color: var(--azul-primario);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.conteudo-card > p {
  font-size: 15px;
  color: var(--texto-suave);
  line-height: 1.55;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.cc-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--borda);
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.cc-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: var(--texto);
  line-height: 1.4;
}

.cc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(22,163,74,0.12);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5L20 7'/></svg>");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.cc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--azul-primario);
  margin-top: auto;
  transition: gap 0.3s, color 0.3s;
  position: relative;
  z-index: 2;
}

.cc-link:hover { gap: 12px; color: var(--ambar-escuro); }

/* ====== CONHECIMENTO (faixa de fecho) ====== */
.conhecimento {
  position: relative;
  background: linear-gradient(135deg, #020616 0%, #050E32 55%, #0A1849 100%);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}

.conhecimento-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.conh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

.conh-orb-1 { width: 360px; height: 360px; background: #2952D4; top: -30%; left: 5%; }
.conh-orb-2 { width: 300px; height: 300px; background: rgba(245,200,0,0.35); bottom: -30%; right: 8%; }

.conhecimento .container { position: relative; z-index: 2; max-width: 760px; }

.conhecimento-titulo {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 20px;
  color: #fff;
}

.conhecimento-titulo .ambar {
  background: linear-gradient(135deg, var(--ambar) 0%, #FFE055 50%, var(--ambar) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  animation: gradientShift 4s linear infinite;
}

.conhecimento p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 8px;
}

.conh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,117,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,117,232,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* 3 verbos: Informa / Orienta / Protege */
.conh-verbos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 44px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.conh-verbo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 20px;
  transition: transform 0.3s ease;
}

.conh-verbo:hover { transform: translateY(-4px); }

.conh-verbo-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,200,0,0.18), rgba(245,200,0,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ambar);
  margin-bottom: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 0 20px rgba(245,200,0,0.1);
}

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

.conh-verbo strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.conh-verbo span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  text-align: center;
}

.conh-verbo-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
  margin: 16px 0;
}

@media (max-width: 640px) {
  .conh-verbos { flex-direction: column; gap: 0; }
  .conh-verbo-divider { width: auto; height: 1px; margin: 0 24px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); }
  .conh-verbo { padding: 20px; }
}

@media (max-width: 900px) {
  .conteudo-grid { grid-template-columns: 1fr; gap: 20px; }
  .conteudo { padding: 64px 0 56px; }
}

@media (max-width: 640px) {
  .conteudo-card { padding: 28px 24px; }
  .conteudo-head { margin-bottom: 40px; }
  .conhecimento { padding: 56px 0; }
}

/* ====== PROPÓSITO ====== */
.proposito {
  position: relative;
  background: linear-gradient(135deg, #020616 0%, #050E32 50%, #0A1849 100%);
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.proposito-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.prop-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.prop-orb-1 { width: 400px; height: 400px; background: #2952D4; top: -25%; left: -10%; }
.prop-orb-2 { width: 320px; height: 320px; background: rgba(245,200,0,0.35); bottom: -25%; right: -8%; }

.prop-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,117,232,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,117,232,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.proposito .container { position: relative; z-index: 2; }

.proposito-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* Lado esquerdo */
.proposito-titulo {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0 32px;
  color: #fff;
}

.proposito-titulo .ambar {
  background: linear-gradient(135deg, var(--ambar) 0%, #FFE055 50%, var(--ambar) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  animation: gradientShift 4s linear infinite;
}

.proposito-desde {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
}

.proposito-since {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.since-num {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #8FB0FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.since-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* Lado direito */
.proposito-right p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.proposito-right p strong { color: #fff; font-weight: 700; }

.proposito-card {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245,200,0,0.2);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
}

.prop-card-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.prop-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.prop-card-final {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--ambar);
}

.prop-card-final span {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--ambar) 0%, #FFE055 50%, var(--ambar) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
}

@media (max-width: 900px) {
  .proposito { padding: 64px 0; }
  .proposito-grid { grid-template-columns: 1fr; gap: 40px; }
  .proposito-since { padding-top: 20px; }
}

/* Timeline Nossa História — empilha no mobile */
@media (max-width: 720px) {
  .timeline-item {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 24px 0 !important;
  }
  .timeline-item h3 { font-size: 19px !important; }
  .timeline-item p { font-size: 15px !important; }
  /* Ano/label viram inline, lado a lado, em cima */
  .timeline-item > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }
  .timeline-item > div:first-child > div:first-child {
    font-size: 26px !important;
    white-space: normal !important;
    word-break: normal !important;
  }
  .timeline-item > div:first-child > div:last-child {
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  .proposito-right p { font-size: 16px; }
  .proposito-card { padding: 22px 20px; }
  .prop-card-line { font-size: 15px; }
  .since-num { font-size: 44px; }
}

/* ====== SEGUIR NO INSTAGRAM (showcase fundo branco) ====== */
.segue-ig {
  position: relative;
  padding: 90px 0;
  background: var(--branco);
  overflow: hidden;
}

.segue-ig-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.segue-ig-text h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--azul-primario);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 14px 0 18px;
}
.segue-ig-text h2 .azul-claro { color: var(--azul-secundario); font-style: italic; }
.segue-ig-text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--texto-suave);
  max-width: 440px;
  margin-bottom: 30px;
}

/* Mockup do Instagram — card claro */
.ig-mock {
  position: relative;
  max-width: 400px;
  margin-left: auto;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(13,43,142,0.14);
  transform-style: preserve-3d;
}

.ig-mock-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--borda);
  position: relative;
  z-index: 2;
}

.ig-mock-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #F5C800, #4A75E8, #0D2B8E);
  flex-shrink: 0;
}
.ig-mock-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #050E32;
  padding: 8px;
}

.ig-mock-info { flex: 1; }
.ig-mock-info strong { display: block; color: var(--azul-primario); font-size: 15px; margin-bottom: 3px; }
.ig-mock-bio { font-size: 12px; color: var(--texto-suave); }

.ig-mock-follow {
  background: linear-gradient(135deg, var(--ambar), #FFD626);
  color: var(--azul-primario);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-mock-follow:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,200,0,0.4); }

.ig-mock-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  position: relative;
  z-index: 2;
}

.ig-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.ig-tile svg { width: 30px; height: 30px; color: #fff; opacity: 0.95; }
.ig-tile:hover { transform: scale(1.05); }

.ig-tile-protege { background: linear-gradient(135deg, #1A3FAF, #0D2B8E); }
.ig-tile-explica { background: linear-gradient(135deg, #4A75E8, #1A3FAF); }
.ig-tile-dica    { background: linear-gradient(135deg, #0D2B8E, #050E32); }

@media (max-width: 900px) {
  .segue-ig-grid { grid-template-columns: 1fr; gap: 40px; }
  .segue-ig-text { text-align: center; }
  .segue-ig-text p { margin-left: auto; margin-right: auto; }
  .ig-mock { margin: 0 auto; }
}

@media (max-width: 640px) {
  .segue-ig { padding: 56px 0; }
}

/* ====== DEPOIMENTOS (desativado — sem manifestações reais ainda) ====== */
.depoimentos {
  padding: 80px 0;
  background: var(--branco);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.depo-card {
  background: linear-gradient(135deg, #FAFBFF 0%, #F0F4FF 100%);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.depo-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: var(--ambar);
  line-height: 1;
  font-weight: 700;
}

.depo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,43,142,0.12);
  border-color: var(--azul-secundario);
}

.depo-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--texto);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(13,43,142,0.08);
  padding-top: 16px;
  margin-top: auto;
}

.depo-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-secundario), var(--azul-primario));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.depo-author strong { display: block; color: var(--azul-primario); font-size: 14px; }
.depo-author span { color: var(--texto-suave); font-size: 12px; }

.depo-cta { text-align: center; margin-top: 36px; }

/* ====== NEWSLETTER ====== */
.newsletter {
  padding: 64px 0 80px;
  background: var(--branco);
}

.newsletter-card {
  background: linear-gradient(135deg, #020616 0%, #050E32 50%, #0A1849 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(13,43,142,0.25);
}

.newsletter-card::before { display: none; }

.newsletter-text h2 {
  font-size: 36px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.05;
}

.newsletter-text h2 .ambar {
  color: var(--ambar);
  font-style: italic;
}

.newsletter-text p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  max-width: 380px;
}

.newsletter-form { position: relative; z-index: 2; }

.news-input-wrap {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
}

.news-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  padding: 12px 16px;
  font-family: inherit;
}

.news-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }

.news-disclaimer {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

.news-disclaimer a { color: var(--ambar); text-decoration: underline; }

.news-success {
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.4);
  color: #4ADE80;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.news-success strong { display: block; margin-bottom: 4px; font-size: 16px; }
.news-success span { font-size: 13px; opacity: 0.85; }

@media (max-width: 980px) {
  .depo-grid { grid-template-columns: 1fr; }
  .newsletter-card { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px; }
  .newsletter-text h2 { font-size: 28px; }
}

@media (max-width: 640px) {
  .newsletter { padding: 40px 0 56px !important; }
  .newsletter-card {
    padding: 32px 20px;
    border-radius: 20px;
  }
  .newsletter-text h2 { font-size: 24px; line-height: 1.1; }
  .newsletter-text p { font-size: 14px; }

  /* Input e botão em coluna no mobile */
  .news-input-wrap {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
  .news-input-wrap input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
  }
  .news-input-wrap .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  .news-disclaimer { font-size: 10px; line-height: 1.5; }

  /* Depoimentos compactos */
  .depoimentos { padding: 48px 0 !important; }
  .depo-card { padding: 22px 20px; }
  .depo-card::before { font-size: 48px; top: -6px; left: 14px; }
  .depo-quote { font-size: 14px; }
  .depo-cta { margin-top: 24px; }

  /* Post share */
  .post-share { padding: 16px 0 32px; }
  .share-box {
    padding: 16px;
    gap: 12px;
  }
  .share-label { font-size: 14px; }
  .share-btn { padding: 8px 12px; font-size: 12px; flex: 1; justify-content: center; min-width: 0; }
  .share-btn span { display: none; }
  .share-btn svg { width: 18px; height: 18px; }
  .share-buttons { gap: 8px; }

  /* Posts relacionados */
  .related-posts { padding: 40px 0 56px; }
  .related-grid { gap: 16px; margin-top: 24px; }
  .related-body { padding: 14px 16px 16px; }
  .related-body h4 { font-size: 14px; }

  /* Breadcrumb */
  .breadcrumb { padding-top: 78px; }
  .breadcrumb .container {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
    gap: 5px;
  }

  /* Reading progress um pouco mais visível */
  .reading-progress { height: 2.5px; }

  /* Trait cards (A Ara) compactos */
  .trait-card { padding: 22px !important; }
  .trait-icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .trait-card h3 { font-size: 18px; }
  .trait-card p { font-size: 14px; }

  /* WhatsApp card */
  .whatsapp-card { padding: 18px 18px; gap: 14px; }
  .wa-icon { width: 48px; height: 48px; }
  .wa-icon svg { width: 26px; height: 26px; }
  .wa-content strong { font-size: 15px; }
  .wa-content p { font-size: 12px; }

  /* Search overlay no mobile */
  .search-overlay { padding: 70px 16px 16px; }
  .search-content h2 { font-size: 20px; margin-bottom: 18px; }
  .search-input-wrap { padding: 14px 16px; }
  .search-input-wrap input { font-size: 14px; }
  .search-suggestions { margin-bottom: 22px; font-size: 12px; }
  .search-suggestions a { padding: 5px 10px; font-size: 12px; }
  .search-close { top: 16px; right: 16px; width: 38px; height: 38px; font-size: 18px; }

  /* Footer legal links */
  .footer-legal { font-size: 11px; }
  .footer-legal span { margin: 0 4px; }
}

/* ====== SCROLL INDICATOR (Hero) ====== */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 5;
  animation: scrollBounce 2.4s ease-in-out infinite;
  transition: color 0.2s;
}

.scroll-indicator:hover { color: var(--ambar); }
.scroll-indicator svg { width: 22px; height: 22px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .scroll-indicator { display: none; }
}

/* ====== SEARCH OVERLAY (Lupa) ====== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,6,22,0.96);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-overlay.open { opacity: 1; visibility: visible; }

.search-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s;
}

.search-close:hover { background: var(--ambar); color: var(--azul-primario); border-color: var(--ambar); }

.search-content {
  max-width: 720px;
  width: 100%;
  color: #fff;
}

.search-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.search-input-wrap:focus-within { border-color: var(--ambar); }

.search-input-wrap svg { width: 22px; height: 22px; color: rgba(255,255,255,0.6); }

.search-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 17px;
  font-family: inherit;
}

.search-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.search-suggestions a {
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}

.search-suggestions a:hover { background: var(--ambar); color: var(--azul-primario); border-color: var(--ambar); }

.search-results { display: flex; flex-direction: column; gap: 10px; }

.search-result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}

.search-result:hover {
  background: rgba(245,200,0,0.1);
  border-color: var(--ambar);
  transform: translateX(4px);
}

.search-result .post-tag { position: static; font-size: 10px; padding: 4px 10px; }
.search-result-title { font-size: 14px; line-height: 1.4; color: rgba(255,255,255,0.92); }
.search-result-arrow { color: var(--ambar); font-size: 18px; font-weight: 700; }

.search-empty {
  text-align: center;
  padding: 32px;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
}

@media (max-width: 640px) {
  .search-content h2 { font-size: 22px; }
  .search-input-wrap input { font-size: 15px; }
  .search-result { grid-template-columns: 1fr; gap: 8px; padding: 12px 14px; }
  .search-result-arrow { display: none; }
}

/* ====== WHATSAPP CARD (Contato) ====== */
.whatsapp-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37,211,102,0.25);
  transition: all 0.3s ease;
}

.whatsapp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.whatsapp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.4);
}

.whatsapp-card:hover::before { transform: translateX(100%); }

.wa-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-icon svg { width: 32px; height: 32px; }

.wa-content { flex: 1; position: relative; z-index: 2; }
.wa-content strong { display: block; font-size: 17px; margin-bottom: 4px; }
.wa-content p { font-size: 13px; opacity: 0.88; margin: 0 0 4px; }
.wa-cta { font-size: 13px; font-weight: 700; opacity: 0.95; }

/* ====== BREADCRUMB ====== */
.breadcrumb {
  background: #020616;
  padding: 90px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breadcrumb .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--ambar); }
.breadcrumb span { opacity: 0.4; }

/* Quando tem breadcrumb, o post-hero precisa menos padding-top */
.breadcrumb + .post-hero { padding-top: 40px; }

/* ====== READING PROGRESS BAR ====== */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ambar), #FFD626);
  width: 0%;
  z-index: 9999;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px rgba(245,200,0,0.5);
}

/* ====== POST SHARE ====== */
.post-share {
  padding: 24px 0 48px;
  background: var(--branco);
}

.share-box {
  background: linear-gradient(135deg, #F8FAFF 0%, #EEF2FF 100%);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.share-label {
  font-weight: 700;
  color: var(--azul-primario);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  background: var(--branco);
  color: var(--azul-primario);
  border: 1px solid var(--borda);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
}

.share-btn svg { width: 16px; height: 16px; }

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13,43,142,0.15);
}

.share-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.share-x:hover { background: #000; color: #fff; border-color: #000; }
.share-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-copy:hover { background: var(--ambar); color: var(--azul-primario); border-color: var(--ambar); }
.share-copy.copied { background: #16A34A; color: #fff; border-color: #16A34A; }

/* ====== POSTS RELACIONADOS ====== */
.related-posts {
  padding: 64px 0 80px;
  background: var(--branco);
  border-top: 1px solid var(--borda);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.related-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13,43,142,0.06);
  border: 1px solid var(--borda);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,43,142,0.15);
  border-color: var(--azul-secundario);
}

.related-thumb {
  aspect-ratio: 16/10;
  background-image: url('../img/blog-cover.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.related-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2,6,22,0.5));
}

.related-thumb .post-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  padding: 4px 10px;
  z-index: 2;
}

.related-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.related-body h4 {
  font-size: 15px;
  color: var(--azul-primario);
  line-height: 1.35;
  margin: 0;
}

.related-read {
  color: var(--ambar-escuro);
  font-weight: 600;
  font-size: 13px;
}

@media (max-width: 768px) {
  .related-grid { grid-template-columns: 1fr; }
  .share-box { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px; }
  .share-buttons { justify-content: center; }
  .breadcrumb .container { font-size: 12px; gap: 6px; }
}

.footer-legal {
  width: 100%;
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}

.footer-legal a {
  color: var(--branco);
  opacity: 0.9;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: opacity 0.2s, color 0.2s;
}

.footer-legal a:hover { color: var(--ambar); opacity: 1; }
.footer-legal span { margin: 0 6px; opacity: 0.4; }

/* ============ PÁGINAS INTERNAS ============ */
.page-hero {
  background: var(--gradiente-hero);
  color: var(--branco);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 20%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,117,232,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.page-content { padding: 80px 0; }

.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--texto);
}

.prose h2 {
  font-size: 32px;
  color: var(--azul-primario);
  margin: 48px 0 16px;
}

.prose h3 {
  font-size: 22px;
  color: var(--azul-primario);
  margin: 32px 0 12px;
}

.prose p { margin-bottom: 20px; }
.prose ul, .prose ol { margin: 0 0 20px 24px; }
.prose li { margin-bottom: 10px; }

.prose blockquote {
  border-left: 4px solid var(--ambar);
  background: var(--neutro);
  padding: 24px 28px;
  margin: 32px 0;
  font-style: italic;
  font-size: 19px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============ BLOG ============ */
.blog-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--branco);
  border: 1.5px solid var(--borda);
  color: var(--texto-suave);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--azul-primario);
  color: var(--azul-primario);
}

.filter-btn.active {
  background: var(--azul-primario);
  border-color: var(--azul-primario);
  color: var(--branco);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: all 0.3s ease;
  border: 1px solid var(--borda);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-card-hover);
  border-color: var(--azul-secundario);
}

.post-thumb {
  aspect-ratio: 16/10;
  background-color: #020616;
  background-image: url('../img/blog-cover.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2,6,22,0.55) 100%);
  pointer-events: none;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-thumb-fallback { display: none; }

.post-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ambar);
  color: var(--azul-primario);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-tag.protege { background: #FF6B6B; color: var(--branco); }
.post-tag.explica { background: var(--ambar); }
.post-tag.dica    { background: var(--azul-secundario); color: var(--branco); }
.post-tag.retro   { background: #8B5CF6; color: var(--branco); }
.post-tag.marca   { background: var(--azul-primario); color: var(--branco); }

.post-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-body h3 {
  font-size: 20px;
  color: var(--azul-primario);
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-body p {
  font-size: 15px;
  color: var(--texto-suave);
  margin-bottom: 16px;
  flex: 1;
}

.post-meta {
  font-size: 13px;
  color: var(--texto-suave);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--borda);
  padding-top: 14px;
}

.post-meta .read { color: var(--azul-primario); font-weight: 600; }

/* ============ POST INDIVIDUAL ============ */
.post-hero {
  background-color: #020616;
  background-image:
    linear-gradient(180deg, rgba(2,6,22,0.8) 0%, rgba(13,43,142,0.7) 100%),
    url('../img/blog-cover.png');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  color: var(--branco);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.post-hero::before {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,117,232,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.post-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.post-hero .post-tag { position: static; display: inline-block; margin-bottom: 20px; }

.post-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  margin-bottom: 20px;
}

.post-hero .post-info {
  display: flex;
  gap: 24px;
  font-size: 14px;
  opacity: 0.85;
}

.post-content {
  padding: 64px 0;
}

.post-cta {
  background: var(--gradiente-dark);
  color: var(--branco);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 48px 0 0;
  text-align: center;
}

.post-cta h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.post-cta .tagline {
  color: var(--ambar);
  font-style: italic;
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

/* ============ FORMULÁRIO ============ */
.form {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--azul-primario);
  margin-bottom: 8px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--borda);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--branco);
  transition: border-color 0.2s;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--azul-primario);
}

.form textarea { min-height: 140px; resize: vertical; }

/* ============ ANIMAÇÕES ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVO ============ */
/* =========================================================
   ▓▓▓ MODERN LAYER — futurista, 3D, animações ▓▓▓
   ========================================================= */

/* Cursor customizado desabilitado a pedido */
.cursor-dot, .cursor-ring { display: none !important; }

/* ====== Scroll Progress Bar ====== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ambar) 0%, #FFD626 50%, var(--ambar) 100%);
  width: 0%;
  z-index: 9998;
  transition: width 0.1s ease;
  box-shadow: 0 0 12px rgba(245,200,0,0.6);
}

/* ====== Orbs flutuantes (background) ====== */
.orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: orbFloat 18s ease-in-out infinite;
}

.orb-1 { width: 380px; height: 380px; background: #2952D4; top: -10%; left: -8%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: #6890FF; top: 40%; right: -8%; animation-delay: -6s; }
.orb-3 { width: 240px; height: 240px; background: rgba(245,200,0,0.25); bottom: -10%; left: 30%; animation-delay: -12s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.08); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(-40px, -20px) scale(1.04); }
}

/* ====== Animated tech lines (hero) ====== */
.hero-tech-lines {
  z-index: 1 !important;
  opacity: 0.7 !important;
}

.tech-svg {
  position: absolute;
  top: 30%;
  left: 28%;
  width: 60%;
  height: 50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.tech-svg path {
  stroke-dasharray: 8 6;
  animation: techDash 4s linear infinite;
}

.tech-svg circle {
  animation: techPulse 2.4s ease-in-out infinite;
}

@keyframes techDash {
  to { stroke-dashoffset: -56; }
}

@keyframes techPulse {
  0%, 100% { opacity: 0.4; r: 2; }
  50% { opacity: 1; r: 3.5; }
}

/* ====== Reveal on scroll ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Botões modernizados ====== */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 24px rgba(245,200,0,0.3),
    0 0 0 0 rgba(245,200,0,0.6);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  box-shadow:
    0 16px 40px rgba(245,200,0,0.5),
    0 0 0 6px rgba(245,200,0,0.15);
}

.btn-ghost { position: relative; overflow: hidden; }

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.btn-ghost:hover::before { transform: translateX(100%); }

.btn-dark {
  background: linear-gradient(135deg, #0A1849 0%, #050B2E 100%);
  box-shadow: 0 10px 30px rgba(13,43,142,0.3);
  position: relative;
  overflow: hidden;
}

.btn-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(74,117,232,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-dark:hover::after { opacity: 1; }

/* ====== Hero badge — glassmorphism + neon glow ====== */
.hero-badge {
  background: linear-gradient(135deg, rgba(13,43,142,0.55) 0%, rgba(5,11,46,0.85) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(245,200,0,0.2) !important;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 40px rgba(245,200,0,0.1) !important;
  animation: badgeFloat 6s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-badge-icon {
  background: linear-gradient(135deg, rgba(245,200,0,0.3) 0%, rgba(245,200,0,0.1) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 0 20px rgba(245,200,0,0.3);
}

.hero-badge a {
  position: relative;
  background: linear-gradient(90deg, var(--ambar), #FFD626);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ====== Pilares: glassmorphism + tilt 3D ====== */
.pilares {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(250,251,255,0.85) 100%) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(13,43,142,0.06);
  box-shadow:
    0 20px 60px rgba(13,43,142,0.12),
    0 0 0 1px rgba(255,255,255,0.5) inset !important;
}

.pilar {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
}

.pilar::before,
.pilar::after { display: none; }

.pilar:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
  transform: translateY(-8px);
}

.pilar:hover .pilar-icon {
  transform: translateY(-4px) scale(1.08) rotate(-4deg);
  background: transparent !important;
  color: var(--azul-primario) !important;
}

.pilar-icon {
  background: transparent !important;
  background-image: none !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.pilar-icon svg {
  filter:
    drop-shadow(0 4px 10px rgba(13,43,142,0.25))
    drop-shadow(0 1px 0 rgba(255,255,255,0.4));
  transition: filter 0.4s ease, transform 0.4s ease;
  transform: rotateX(8deg) rotateY(-4deg);
  transform-style: preserve-3d;
}

.pilar:hover .pilar-icon svg {
  filter:
    hue-rotate(180deg) saturate(2.4) brightness(1.05)
    drop-shadow(0 8px 18px rgba(245,200,0,0.45))
    drop-shadow(0 1px 0 rgba(255,255,255,0.5));
  transform: rotateX(0deg) rotateY(0deg) scale(1.05);
}

.pilar:hover .pilar-link {
  color: var(--ambar-escuro);
}

.pilar-link {
  transition: color 0.3s, gap 0.3s;
}

/* ====== Dot decor — refinada ====== */
.dot-decor { display: none !important; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* ====== Video card — modernizado ====== */
.video-card {
  border: 1px solid rgba(245,200,0,0.15);
  box-shadow:
    0 30px 80px rgba(13,43,142,0.3),
    inset 0 1px 0 rgba(255,255,255,0.1) !important;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}

.video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 40px 100px rgba(13,43,142,0.4),
    0 0 0 1px rgba(245,200,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

.video-plug {
  animation: plugGlow 3s ease-in-out infinite;
}

@keyframes plugGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(104,144,255,0.5)); opacity: 0.6; }
  50% { filter: drop-shadow(0 0 24px rgba(104,144,255,1)); opacity: 1; }
}

.play-circle {
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 100%) !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 10px 30px rgba(0,0,0,0.3);
  animation: playPulse 2.4s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 10px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 10px 30px rgba(0,0,0,0.3), 0 0 0 20px rgba(255,255,255,0); }
}

.play-circle:hover {
  background: linear-gradient(135deg, var(--ambar) 0%, #FFD626 100%) !important;
  color: var(--azul-primario) !important;
  border-color: var(--ambar) !important;
  transform: scale(1.12);
}

/* ====== Timeline modernizada ====== */
.timeline::before {
  background: linear-gradient(90deg,
    transparent 0%,
    var(--ambar) 15%,
    var(--ambar) 85%,
    transparent 100%) !important;
  height: 2px !important;
  background-size: 200% 100% !important;
  animation: lineShimmer 3s linear infinite;
}

@keyframes lineShimmer {
  to { background-position: -200% 0; }
}

.tl-photo {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  cursor: pointer;
}

.tl-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 0%, rgba(245,200,0,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tl-photo:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow:
    0 20px 50px rgba(13,43,142,0.35),
    0 0 0 4px rgba(245,200,0,0.3);
}

.tl-photo:hover::after { opacity: 1; }

.tl-text-item .tl-year {
  background: linear-gradient(135deg, var(--azul-primario) 0%, var(--azul-secundario) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tl-future {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF5 100%) !important;
  box-shadow:
    0 20px 50px rgba(245,200,0,0.15),
    inset 0 1px 0 rgba(255,255,255,1) !important;
  position: relative;
  overflow: hidden;
}

.tl-future::before { display: none; }

/* ====== BANNER 70 ANOS — comemorativo premium ====== */
.banner-70 {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  background: linear-gradient(135deg, #020616 0%, #0A1849 55%, #0D2B8E 100%);
  border: 1.5px solid rgba(245,200,0,0.4);
  border-radius: 24px;
  padding: 44px 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
  box-shadow:
    0 30px 70px rgba(13,43,142,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.banner-70-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 2;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 48px;
}

.banner-70-right { position: relative; z-index: 2; }

@media (max-width: 768px) {
  .banner-70 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 26px;
    margin-top: 36px;
  }
  .banner-70-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding-right: 0;
    padding-bottom: 22px;
  }
}

/* Brilho diagonal animado */
.tl-70-shine {
  position: absolute;
  top: -50%; left: -60%;
  width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(245,200,0,0.12), transparent);
  transform: rotate(18deg);
  animation: shine70 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine70 {
  0% { left: -60%; }
  60%, 100% { left: 130%; }
}

/* Sparkles */
.tl-70-spark {
  position: absolute;
  color: var(--ambar);
  font-size: 14px;
  opacity: 0.8;
  animation: spark70 2.6s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(245,200,0,0.6);
  pointer-events: none;
}
.tl-70-spark.s1 { top: 20px; right: 40px; animation-delay: 0s; }
.tl-70-spark.s2 { top: 50%; right: 22px; font-size: 11px; animation-delay: -0.8s; }
.tl-70-spark.s3 { bottom: 28px; right: 60px; font-size: 12px; animation-delay: -1.6s; }
.tl-70-spark.s4 { top: 30px; left: 46%; font-size: 10px; animation-delay: -1.2s; }

@keyframes spark70 {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Badge aniversário */
.tl-70-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,200,0,0.14);
  border: 1px solid rgba(245,200,0,0.3);
  color: var(--ambar);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.tl-70-badge svg { width: 14px; height: 14px; }

/* Número 70 gigante com gradient */
.tl-70-num {
  font-size: 96px;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-style: italic;
  background: linear-gradient(135deg, var(--ambar) 0%, #FFE055 45%, #FFD626 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 20px rgba(245,200,0,0.35));
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.tl-70-num span {
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  -webkit-text-fill-color: rgba(255,255,255,0.75);
  color: rgba(255,255,255,0.75);
}

.tl-70-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.tl-70-title span {
  color: var(--ambar);
  font-style: italic;
}

.tl-70-text {
  font-size: 16px;
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .tl-70-num { font-size: 72px; }
}
.tl-70-text strong { color: var(--ambar); font-weight: 700; }

/* ====== Trust band — shield com brilho ====== */
.trust-shield {
  position: relative;
  background: linear-gradient(135deg, var(--ambar) 0%, #FFD626 100%) !important;
  box-shadow:
    0 16px 40px rgba(245,200,0,0.4),
    inset 0 2px 0 rgba(255,255,255,0.4);
  animation: shieldFloat 5s ease-in-out infinite;
}

.trust-shield::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245,200,0,0.3) 0%, transparent 100%);
  filter: blur(16px);
  z-index: -1;
}

@keyframes shieldFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}

.trust-item {
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
}

.trust-item:hover .ti-icon {
  background: linear-gradient(135deg, var(--ambar) 0%, #FFD626 100%);
  color: var(--azul-primario);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 24px rgba(245,200,0,0.4);
}

.ti-icon {
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ====== Footer — social com glow ====== */
.footer-social a {
  position: relative;
  transition: all 0.3s ease;
}

.footer-social a::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--ambar);
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s;
  z-index: -1;
}

.footer-social a:hover {
  color: var(--ambar);
  transform: translateY(-4px);
}

.footer-social a:hover::after { opacity: 0.4; }

/* ====== Header search glow ====== */
.header-search:hover {
  background: rgba(245,200,0,0.1) !important;
  color: var(--ambar);
  box-shadow: 0 0 20px rgba(245,200,0,0.3);
}

/* ====== Logo plug com glow ====== */
.logo .plug-svg {
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

/* ====== Hero h1 — entrada com gradient ====== */
.hero h1 .destaque {
  background: linear-gradient(135deg, var(--ambar) 0%, #FFE055 50%, var(--ambar) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
  to { background-position: 200% center; }
}

/* ====== Eyebrow line animada ====== */
.hero-eyebrow::before,
.eyebrow::before {
  animation: lineExtend 2s ease-out;
}

@keyframes lineExtend {
  from { width: 0; }
  to { width: 32px; }
}

/* ====== Hero image placeholder mais elegante ====== */
.hero-image-placeholder {
  background:
    linear-gradient(135deg, rgba(74,117,232,0.15) 0%, rgba(13,43,142,0.4) 100%),
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px) !important;
  border: 1.5px dashed rgba(245,200,0,0.3) !important;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,200,0,0.08) 0%, transparent 60%);
  animation: placeholderGlow 4s ease-in-out infinite;
}

@keyframes placeholderGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ====== Tilt 3D containers ====== */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* ====== Magnetic buttons ====== */
[data-magnetic] {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* ====== Smooth scrollbar (webkit) ====== */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #F0F0F5; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--azul-primario), var(--azul-secundario));
  border-radius: 10px;
  border: 2px solid #F0F0F5;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--azul-secundario), var(--azul-claro));
}

/* ====== Section spacing modernizada ====== */
section { position: relative; }

/* Esconder em mobile */
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 0 60px; }
  .pilares { grid-template-columns: 1fr; }
  .pilar { border-right: none; border-bottom: 1px solid var(--borda); }
  .pilar:last-child { border-bottom: none; }
  .split { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(5,11,46,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    align-items: flex-start;
  }
  .menu-toggle { display: block; }
  section { padding: 64px 0; }
  .timeline { grid-template-columns: 1fr; gap: 16px; }
  .timeline::before { display: none; }
  .tl-arrow { display: none; }
  .tl-photo { width: 130px; height: 130px; }
  .tl-text-item { text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .trust-headline { flex-direction: column; text-align: center; }
}

/* ====== RESPONSIVO MOBILE (até 768px) ====== */
@media (max-width: 768px) {

  /* Hero: imagem fica no fundo escurecida, texto centralizado em cima */
  .hero {
    aspect-ratio: auto;
    min-height: 100vh;
    padding: 90px 0 0;
    background-color: #020616;
    background-image: url('../img/ara-hero-mobile.png?v=4');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: block;
    position: relative;
  }

  /* Grid em static pra os botões absolute herdarem do .hero */
  .hero-grid {
    position: static;
    z-index: 5;
    grid-template-columns: 1fr;
  }

  .hero-grid > div:last-child { display: none; }

  .hero-grid > .reveal-stagger {
    position: static !important;
    z-index: 5;
  }

  /* Botões absolute em relação ao .hero — ficam no rodapé da imagem */
  .hero-ctas {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 10;
    margin: 0;
  }

  /* Imagem mobile escondida — agora é background do .hero */
  .hero-image-mobile { display: none; }

  .hero-image-mobile-old {
    display: block;
    width: calc(100% + 40px);
    margin: 0 -20px -50px;
    aspect-ratio: 9 / 11;
    overflow: hidden;
    position: relative;
  }

  .hero-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
  }

  /* Fade esfumaçado no topo da imagem (transição com o azul do hero) */
  .hero-image-mobile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg,
      #020616 0%,
      rgba(2,6,22,0.85) 30%,
      rgba(2,6,22,0.55) 55%,
      rgba(2,6,22,0.25) 78%,
      transparent 100%);
    z-index: 2;
    pointer-events: none;
  }

  /* Fade leve no fundo da imagem */
  .hero-image-mobile::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 20%;
    background: linear-gradient(180deg,
      transparent 0%,
      rgba(2,6,22,0.4) 70%,
      rgba(2,6,22,0.75) 100%);
    z-index: 2;
    pointer-events: none;
  }

  .hero::after { display: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    position: static;
  }

  .hero-visual {
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: none !important;
    pointer-events: none;
    z-index: 8;
  }

  .hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Badge "Tô de olho nos golpes" escondido no mobile */
  .hero-badge { display: none !important; }

  .hero-badge strong {
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
  }

  .hero-badge-icon {
    width: 26px !important;
    height: 26px !important;
    margin-bottom: 8px !important;
    border-radius: 6px !important;
  }

  .hero-badge-icon svg { width: 14px; height: 14px; }

  .hero-badge a { font-size: 11px; }

  .hero h1 {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .hero-sub .script { font-size: 22px; }

  .hero-eyebrow { margin-bottom: 16px; }

  /* CTAs ancorados no rodapé do hero (sobre a mesa) */
  .hero-ctas {
    position: absolute !important;
    bottom: 30px !important;
    left: 20px !important;
    right: 20px !important;
    z-index: 10;
    flex-direction: column;
    align-items: stretch;
    margin: 0 !important;
    padding: 0 !important;
  }

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

  /* Header mobile */
  .nav { display: none; }
  .header-search { display: none; }
  .menu-toggle { display: block; }

  /* Pilares: empilhados verticalmente */
  .pilares {
    grid-template-columns: 1fr;
  }

  .pilar {
    border-right: none;
    border-bottom: 1px solid var(--borda);
    padding: 20px 22px 18px;
  }

  .pilar:last-child { border-bottom: none; }

  .pilares-wrap {
    margin-top: 28px;
    margin-bottom: 28px;
  }

  /* Sections com padding padronizado em mobile */
  section:not(.hero):not(.trust-band):not(.nova-arapua):not(.timeline-section) {
    padding: 56px 0;
  }

  /* Nova Arapuã */
  .nova-arapua { padding: 36px 0 28px !important; }
  .split-vertical {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .phone-frame { width: 240px; }

  .section-lead { font-size: 15px; margin-bottom: 22px; }

  /* Conteúdo da Ara split */
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Hero divider — esconder em mobile pra não atrapalhar */
  .hero-divider {
    height: 60px;
  }

  .m-item { font-size: 14px; }

  /* Timeline */
  .timeline-section { padding: 32px 0 48px !important; }
  .timeline { gap: 12px !important; margin-top: 24px; }
  .tl-text-item .tl-year { font-size: 22px; margin-bottom: 4px; }
  .tl-text-item .tl-text { font-size: 13px; }
  .tl-photo { width: 100px; height: 100px; }

  /* Trust band */
  .trust-band { padding: 48px 0 52px !important; }
  .trust-headline h3 { font-size: 22px; }

  /* Faixa marquee menor */
  .hero-divider { height: 48px !important; }
  .marquee-track { padding: 8px 24px 8px 0; gap: 24px; }
  .m-item { font-size: 13px; }

  /* Eyebrow menor */
  .eyebrow { font-size: 11px; margin-bottom: 14px; }

  /* Trust band */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .trust-headline {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-item .ti-icon {
    margin: 0 auto 12px;
  }

  /* Footer compacto e completo */
  .footer { padding: 36px 0 36px !important; min-height: auto; overflow: visible; }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 8px 14px;
    flex-wrap: wrap;
    row-gap: 6px;
    padding: 0 12px;
    max-width: 320px;
  }

  .footer-nav a { font-size: 13px; line-height: 1.3; white-space: nowrap; }
  .footer-social { gap: 18px; margin-top: 4px; }
  .footer-copy {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px;
    padding-bottom: 0;
    white-space: normal;
  }
  .footer-copy br { display: inline; }
  .footer-copy br::after { content: ' '; }

  /* Filtros do blog em 2 linhas máx */
  .blog-filters {
    gap: 8px;
    margin-bottom: 36px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Post hero — espaço do topo */
  .post-hero { padding: 150px 0 48px !important; }
  .post-hero h1 { font-size: 26px; }

  /* Container padding ajustado */
  .container {
    padding: 0 20px;
  }

  /* Página interna hero */
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 32px; }

  /* Post hero */
  .post-hero { padding: 120px 0 60px; }
  .post-hero h1 { font-size: 28px; }
  .post-hero .post-info { flex-wrap: wrap; gap: 12px; }
}
