/* =========================================
   DEFESA 24H — Landing Page v2 (premium)
   Paleta: navy #0A2540 · vermelho #E53935 · branco · creme #FAF7F2
   Tipografia: Montserrat (display) + Inter (body)
   ========================================= */

:root {
  --navy: #0A2540;
  --navy-deep: #071B30;
  --navy-light: #14385C;
  --red: #E53935;
  --red-deep: #C62828;
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --gray-50: #F5F7FA;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-700: #334155;
  --graphite: #2C3E50;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 8px 32px rgba(10,37,64,.12);
  --shadow-lg: 0 24px 80px rgba(10,37,64,.25);

  --container: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}
h2 { font-weight: 900; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--red); }

/* EYEBROW (label) */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 16px;
}
.eyebrow.centered { display: block; text-align: center; }

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(229,57,53,.4);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(229,57,53,.55);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}
.btn-lg { padding: 20px 36px; font-size: 16px; border-radius: 14px; }
.btn-full { width: 100%; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(10,37,64,.15); }
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 900; letter-spacing: 0.1em; color: var(--navy); font-size: 15px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--gray-700); transition: color .15s ease; }
.nav a:hover { color: var(--navy); }
.nav-cta {
  padding: 10px 22px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px !important;
}
.nav-cta:hover { background: var(--red-deep); }
@media (max-width: 860px) {
  .nav a:not(.nav-cta) { display: none; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 120px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: slow-zoom 20s ease-out forwards;
}
@keyframes slow-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7,27,48,.92) 0%, rgba(10,37,64,.7) 40%, rgba(10,37,64,.35) 75%, rgba(10,37,64,.25) 100%),
    linear-gradient(180deg, transparent 50%, rgba(7,27,48,.6) 100%),
    radial-gradient(ellipse at 15% 40%, rgba(229,57,53,.12), transparent 50%);
  z-index: -1;
}
.hero-inner {
  position: relative;
  text-align: left;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(44px, 7.5vw, 96px);
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-title .accent { color: var(--red); }
.hero-sub {
  font-size: clamp(18px, 2.1vw, 22px);
  max-width: 680px;
  margin: 0 0 48px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-note {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.02em;
  margin: 0;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.35);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  animation: bounce 2.8s ease-in-out infinite;
}
.hero-scroll-hint span { opacity: .7; }
.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.4), transparent);
}
@media (max-width: 860px) { .hero-scroll-hint { display: none; } }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* TRUST STRIP */
.trust-strip {
  background: var(--navy-deep);
  color: var(--white);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.trust-strip.is-visible { opacity: 1; transform: translateY(0); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--red);
  letter-spacing: -0.02em;
}
.trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.02em;
}
@media (max-width: 680px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* SEÇÕES */
.section {
  padding: 112px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.section.is-visible { opacity: 1; transform: translateY(0); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-cream {
  background: var(--cream);
}
.section-cream h2, .section-cream h3, .section-cream h4 { color: var(--navy); }
.section-cream .section-footnote { color: var(--navy); opacity: .85; }
.section-title.dark { color: var(--navy); }

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.section-title-left {
  font-size: clamp(34px, 4.5vw, 56px);
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}
.section-title-left.dark { color: var(--navy); }
.section-dark .section-title-left { color: var(--white); }

.section-sub {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.6;
}
.section-dark .section-sub { color: rgba(255,255,255,.7); }
.section-footnote {
  text-align: center;
  margin-top: 72px;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* SPLIT (imagem + conteúdo) */
.split { padding: 128px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid-reverse .split-visual { order: 2; }
.split-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-visual-mockup {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  box-shadow: 0 30px 80px rgba(10,37,64,.4);
}
.split-visual-kit { aspect-ratio: 4/3; }
.split-content { max-width: 520px; }
.split-lead {
  font-size: 18px;
  color: var(--gray-700);
  margin: 0 0 20px;
  line-height: 1.7;
}
.split-lead.dark { color: var(--gray-700); }
.section-dark .split-lead { color: rgba(255,255,255,.8); }
.split-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--gray-700);
}
.split-list.dark li { color: var(--gray-700); }
.section-dark .split-list li { color: rgba(255,255,255,.85); }
.split-list .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 10px;
}
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; gap: 48px; }
  .split-grid-reverse .split-visual { order: 0; }
  .split-content { max-width: 100%; }
  .split-visual { aspect-ratio: 4/3; }
}

/* QUOTE */
.quote {
  margin: 32px 0 0;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: rgba(255,255,255,.04);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.section-dark .quote { background: rgba(255,255,255,.04); color: rgba(255,255,255,.95); }
.quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

/* SCENARIOS GRID */
.scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.scenario-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 18px rgba(10,37,64,.06);
}
.scenario-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 24px 60px rgba(229,57,53,.15), 0 8px 24px rgba(10,37,64,.08);
}
.scenario-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.scenario-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.scenario-card:hover .scenario-img img { transform: scale(1.06); }
.scenario-body { padding: 28px 26px 32px; }
.scenario-body h3 { font-size: 22px; margin-bottom: 12px; color: var(--navy); }
.scenario-body p { color: var(--gray-500); font-size: 16px; margin: 0; line-height: 1.6; }
.section-cream .section-footnote { font-style: italic; font-weight: 600; color: var(--navy); }
@media (max-width: 860px) {
  .scenarios { grid-template-columns: 1fr; gap: 20px; }
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 40px auto 0;
  align-items: start;
}
.step { text-align: center; padding: 20px; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(229,57,53,.35);
}
.step h3 { font-size: 24px; margin-bottom: 12px; }
.step p { color: var(--gray-500); font-size: 16px; margin: 0; line-height: 1.6; }
.step-arrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  opacity: .3;
  align-self: center;
  padding-top: 36px;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
}

/* ADVOGADO IMG */
.advogado-img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* BENEFITS GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 48px auto 0;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color .2s ease, transform .2s ease;
}
.benefit:hover { border-color: var(--red); transform: translateY(-2px); }
.benefit h4 { font-size: 17px; margin: 0 0 4px; color: var(--navy); }
.benefit p { margin: 0; font-size: 15px; color: var(--gray-500); line-height: 1.5; }
.benefit .check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  font-size: 15px;
}

/* ========= PLANO — SEÇÃO COM IDENTIDADE FORTE ========= */
.section-plan {
  position: relative;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(229,57,53,.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(229,57,53,.1), transparent 50%),
    linear-gradient(145deg, #081D34 0%, #14385C 50%, #0A2540 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: 120px 0;
}
.section-plan h2, .section-plan h3, .section-plan h4 { color: var(--white); }
.section-plan .section-sub { color: rgba(255,255,255,.72); }
.plan-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.plan-inner { position: relative; z-index: 1; }

.plan-card {
  max-width: 480px;
  margin: 56px auto 0;
  background: var(--white);
  color: var(--graphite);
  border-radius: var(--radius-lg);
  padding: 72px 48px 48px;
  box-shadow: 0 50px 140px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
  text-align: center;
  border-top: 5px solid var(--red);
}
.plan-ribbon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(229,57,53,.45);
  white-space: nowrap;
}
.plan-name {
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}
.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0;
}
.plan-currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 18px;
}
.plan-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 128px;
  font-weight: 900;
  color: var(--navy);
  line-height: .95;
  letter-spacing: -0.05em;
}
.plan-period-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  text-align: left;
  padding-left: 4px;
}
.plan-period-top {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.12em;
}
.plan-period-bot {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-700);
}
.plan-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  margin: 36px 0;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  text-align: left;
  display: grid;
  gap: 16px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.4;
}
.plan-features li strong {
  color: var(--navy);
  font-weight: 700;
}
.plan-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(229,57,53,.12);
  color: var(--red);
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.plan-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.01em;
}
.plan-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.plan-trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan-trust-item strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.plan-trust-item span {
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
@media (max-width: 680px) {
  .plan-card { padding: 60px 32px 40px; }
  .plan-value { font-size: 96px; }
  .plan-currency { font-size: 28px; margin-top: 14px; }
  .plan-trust { grid-template-columns: 1fr; gap: 20px; padding-top: 40px; margin-top: 40px; }
}

/* FAQ */
.faq { max-width: 860px; margin: 48px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--red); box-shadow: 0 8px 24px rgba(229,57,53,.08); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 32px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .25s ease;
  line-height: 1;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 26px 24px;
  color: var(--gray-700);
  font-size: 16px;
  margin: 0;
  line-height: 1.7;
}

/* CTA FINAL */
.cta-final {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(229,57,53,.22), transparent 55%),
              radial-gradient(circle at 20% 80%, rgba(229,57,53,.12), transparent 50%);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.cta-title {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.cta-sub {
  font-size: 20px;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  line-height: 1.55;
}
.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.02em;
}

/* RODAPÉ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.72);
  padding: 72px 0 32px;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 16px; }
.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
  font-size: 16px;
  margin: 0 0 8px;
}
.footer-tag { color: rgba(255,255,255,.6); max-width: 300px; }
.site-footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
}
.site-footer a { color: rgba(255,255,255,.72); transition: color .15s ease; }
.site-footer a:hover { color: var(--white); }
.site-footer p { margin: 0 0 10px; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}
.footer-disclaimer strong { color: rgba(255,255,255,.8); }
.footer-copy {
  margin-top: 20px !important;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 36px rgba(37,211,102,.5);
  z-index: 100;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: pulse-wa 2.4s ease-in-out infinite;
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 10px 36px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 36px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 14px 42px rgba(37,211,102,.65); }

/* AJUSTES MOBILE GERAIS */
@media (max-width: 860px) {
  .section { padding: 80px 0; }
  .split { padding: 88px 0; }
  .hero { min-height: 88vh; padding: 100px 0 120px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero { padding: 80px 0 100px; }
  .plan-card { padding: 40px 28px; }
  .plan-value { font-size: 84px; }
  .section-title { font-size: clamp(30px, 7vw, 44px); }
}
