/* ===================================================
   PLATAFORMA MÉTODO DAS MICROVITÓRIAS - PREMIUM
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --blue: #2E5BFF;
  --green: #00C853;
  --green-hover: #00B248;
  --yellow: #FFC83D;
  --white: #ffffff;
  --gray-light: #F7F8FA;
  --gray: #e2e8f0;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-light: #64748b;
  
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.05);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

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

body, html {
  overflow-x: hidden !important;
}

html { scroll-behavior: smooth; font-size: 16px; width: 100%; max-width: 100%; }
body { font-family: 'Nunito', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; width: 100%; max-width: 100%; position: relative; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 60px 0; } /* REDUZIDO de 90px para 60px */
.bg-light { background: var(--gray-light); }
.text-center { text-align: center; }

h1, h2, h3, h4 { font-weight: 900; line-height: 1.2; color: var(--text-dark); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-title span { color: var(--blue); }
.section-subtitle { font-size: 1.1rem; color: var(--text-mid); max-width: 700px; margin: 0 auto; }

/* === ANIMATIONS === */
.fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* === BUTTONS (GREEN ALWAYS) === */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: white; font-weight: 900; padding: 18px 36px; 
  border-radius: 60px; box-shadow: 0 8px 24px rgba(0, 200, 83, 0.4); 
  text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; 
  border: none; cursor: pointer; text-align: center;
}
.btn-cta:hover { transform: translateY(-3px); background: var(--green-hover); box-shadow: 0 12px 30px rgba(0, 200, 83, 0.5); }
.btn-cta.large { font-size: 1.25rem; padding: 22px 44px; }
.btn-cta.pulse { animation: btnPulse 2s infinite; }
@keyframes btnPulse { 0%,100%{box-shadow:0 8px 24px rgba(0, 200, 83, 0.4)} 50%{box-shadow:0 8px 40px rgba(0, 200, 83, 0.7), 0 0 0 10px rgba(0, 200, 83, 0.1)} }

/* === HEADER === */
.site-header { padding: 16px 0; background: white; border-bottom: 1px solid var(--gray); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 40px; height: 40px; background: var(--blue); border-radius: 10px; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.header-badge { background: var(--gray-light); color: var(--text-dark); font-weight: 800; font-size: 0.8rem; padding: 6px 14px; border-radius: 30px; border: 1px solid var(--gray); }

/* === HERO === */
.hero { background: white; padding: 40px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.badge-tag { background: var(--gray-light); color: var(--text-dark); font-size: 0.8rem; font-weight: 800; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--gray); }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.hero-sub { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 30px; line-height: 1.6; }
.hero-cta-wrap { text-align: left; }
.hero-seals { display: flex; gap: 20px; margin-top: 24px; justify-content: flex-start; }
.seal-item { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); }
.hero-image-wrap img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* === PAIN SECTION (DOR EMOCIONAL) === */
.pain-section {
  background: linear-gradient(180deg, #fff9f0 0%, #fff5eb 40%, #fff 100%);
  padding: 70px 0 60px;
  position: relative;
}

.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.pain-card {
  background: white;
  border: 1px solid #fde0c8;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(200, 120, 50, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(200, 120, 50, 0.12);
  border-color: #f59e0b;
}
.pain-card:hover::before { opacity: 1; }

.pain-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.pain-card p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  line-height: 1.5;
  font-style: italic;
}

.pain-transition {
  max-width: 760px;
  margin: 50px auto 0;
  text-align: center;
}
.pain-transition-text {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.pain-bridge {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-dark);
  padding: 20px 30px;
  background: linear-gradient(135deg, rgba(46, 91, 255, 0.06), rgba(0, 200, 83, 0.06));
  border-radius: 14px;
  border: 1px solid rgba(46, 91, 255, 0.15);
  display: inline-block;
}
.pain-bridge strong { color: var(--blue); }

/* === PLATFORM SECTION === */
.platform-section { background: var(--gray-light); }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.platform-item { background: white; padding: 24px; border-radius: var(--radius); text-align: center; border: 1px solid var(--gray); box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.platform-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.platform-item h4 { font-size: 1.1rem; }

/* === PROBLEM SECTION === */
.problem-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; margin-top: 40px; }
.compare-side { background: white; border-radius: var(--radius-lg); padding: 20px; border: 2px solid var(--gray); text-align: center; box-shadow: var(--shadow-sm); }
.compare-side.bad { border-color: #fecaca; }
.compare-side.good { border-color: var(--green); box-shadow: 0 10px 30px rgba(0,200,83,0.15); }
.compare-side img { width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; margin-bottom: 16px; }
.compare-label { font-weight: 900; font-size: 1.2rem; }
.compare-vs { width: 50px; height: 50px; background: var(--text-dark); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; }

/* === MECHANISM (PREMIUM REDESIGN) === */
.mechanism-section {
  background: linear-gradient(135deg, #0d1b4b 0%, #1a2f7a 45%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.mechanism-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(46,91,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.mechanism-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0,200,83,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* === VILLAIN / PROBLEM BLOCK === */
.villain-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ef4444;
  border-radius: 16px;
  padding: 40px 36px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.villain-title {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.3;
}
.villain-title span { color: #ef4444; }
.villain-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.villain-content p strong {
  color: #fca5a5;
}
.villain-bridge {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.25);
  border-radius: 12px;
}
.villain-bridge p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.6;
}
.villain-bridge p strong {
  color: #4ade80;
}

/* Badge de credibilidade científica */
.mech-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: #a5c8ff;
  font-weight: 800; font-size: 0.85rem;
  padding: 8px 20px; border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mech-span { color: #FFD700 !important; }
.section-title { }

/* Subtítulo do mecanismo */
.mech-mechanism-sub {
  color: #FFD700;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Subtítulo branco sobre fundo escuro */
.mech-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 16px auto 0;
}

/* Linha divisória com rótulo central */
.mech-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 50px 0 36px;
}
.mech-divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
}
.mech-divider-text {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  white-space: nowrap;
}

/* ---- Cards dos 5 Pilares ---- */
.mech-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 50px;
}
.pillar-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.pillar-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,215,0,0.5);
}
.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.pillar-card h4 {
  color: #fff; font-size: 1rem; font-weight: 900;
  margin-bottom: 8px;
}
.pillar-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem; line-height: 1.5;
}

/* ---- Infográfico de Fluxo Premium (Timeline Professional) ---- */
.mech-flow-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
}
.mech-flow-label {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 40px;
}
.mech-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.mt-line {
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 1;
}
.mt-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}
.mt-marker {
  width: 50px; height: 50px;
  background: #0d1b4b;
  border: 2px solid #2E5BFF;
  border-radius: 50%;
  color: #fff; font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(13,27,75,1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mt-step:hover .mt-marker {
  transform: scale(1.1);
  border-color: #4ade80;
}
.mt-marker-final {
  background: #FFD700;
  border-color: #FFA500;
  color: #1a1a1a;
}
.mt-step:hover .mt-marker-final { border-color: #fff; }
.mt-content {
  margin-top: 10px;
}
.mt-title {
  color: #fff; font-size: 0.95rem; font-weight: 800;
  margin-bottom: 6px; line-height: 1.3;
}
.mt-desc {
  color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.5;
}
.mt-final .mt-title { color: #FFD700; }

/* Decorative bg dividers */
.mech-bg-top, .mech-bg-bottom { display: none; }

/* Responsive mechanism */
@media(max-width: 900px) {
  .mech-pillars { grid-template-columns: repeat(3, 1fr); }
  .mech-timeline { flex-direction: column; align-items: flex-start; gap: 30px; padding-left: 20px; }
  .mt-line { top: 0; bottom: 0; left: 45px; right: auto; width: 2px; height: auto; }
  .mt-step { display: flex; align-items: flex-start; text-align: left; padding: 0; }
  .mt-marker { margin: 0 20px 0 0; flex-shrink: 0; }
  .mt-content { margin-top: 5px; }
  .mech-divider-text { font-size: 0.75rem; }
  .villain-block { padding: 30px 24px; }
}
@media(max-width: 600px) {
  .mech-pillars { grid-template-columns: repeat(2, 1fr); }
  .mf-step { flex: 0 0 calc(50% - 6px); }
  .mech-badge { font-size: 0.75rem; padding: 6px 14px; }
  .villain-block { padding: 24px 18px; }
  .villain-title { font-size: 1.3rem; }
}

/* === INSIDE PLATFORM (CARDS PREMIUM) === */
.bg-dark-premium {
  background: linear-gradient(135deg, #0a0e2e 0%, #1a1f4e 50%, #0d1230 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.bg-dark-premium::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,91,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.bg-dark-premium::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,83,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.bg-dark-premium .container { position: relative; z-index: 1; }
.bg-dark-premium .section-title { color: #fff; }
.bg-dark-premium .section-title span { color: #FFD700; }
.bg-dark-premium .section-subtitle { color: rgba(255,255,255,0.75); }
.bg-dark-premium .text-light-alpha { color: rgba(255,255,255,0.75) !important; }

.premium-inside-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.pi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 110px;
}
.pi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity 0.3s;
}
.pi-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(46,91,255,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.pi-card:hover::before { opacity: 1; }

.pi-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(46,91,255,0.25), rgba(0,200,83,0.2));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4ade80;
}
.pi-icon svg {
  width: 24px; height: 24px;
  stroke: #4ade80;
}

.pi-content { flex: 1; min-width: 0; }
.pi-content h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}
.pi-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* Card destacado (Acesso Vitalício) */
.pi-highlight {
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(46,91,255,0.15)) !important;
  border: 1px solid rgba(255,215,0,0.4) !important;
  box-shadow: 0 10px 30px rgba(255,215,0,0.1);
}
.pi-highlight .pi-icon {
  background: rgba(255,215,0,0.15);
  border-color: rgba(255,215,0,0.4);
  color: #FFD700;
}
.pi-highlight .pi-icon svg { stroke: #FFD700; }
.pi-highlight .pi-content h4 { color: #FFD700; }
.pi-highlight .pi-content p { color: rgba(255,255,255,0.8); }
.pi-highlight::before {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  opacity: 1;
}

@media(max-width: 900px) {
  .premium-inside-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .premium-inside-grid { grid-template-columns: 1fr; }
  .pi-card { padding: 20px 18px; }
}

/* === REAL PREVIEWS === */
.previews-section { background: white; }
.mockup-big { margin: 40px 0; text-align: center; }
.mockup-big img { max-width: 900px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); }
.real-previews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.activity-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.ac-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-light);
}
.ac-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.activity-card:hover .ac-img img {
  transform: scale(1.05);
}
.ac-title {
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  border-top: 1px solid var(--gray);
}

/* === BENEFITS === */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.benefit-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray); text-align: center; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.bc-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-light); }
.bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.benefit-card:hover .bc-img img { transform: scale(1.05); }
.benefit-card h4 { font-size: 1.1rem; padding: 20px 16px; margin: 0; border-top: 1px solid var(--gray); color: var(--text-dark); }

/* === EXPERT SECTION === */
.expert-section { background: white; }
.expert-box { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; background: var(--gray-light); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--gray); }
.expert-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 3/4; object-fit: cover; object-position: top center; }
.expert-content p { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.7; }
.expert-signature { margin-top: 30px; border-top: 1px solid var(--gray); padding-top: 20px; }
.expert-signature strong { font-size: 1.2rem; color: var(--text-dark); display: block; }
.expert-signature span { font-size: 0.95rem; color: var(--text-light); }

/* === TESTIMONIALS === */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testimonial-card { background: var(--gray-light); padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--gray); }
.stars { color: var(--yellow); font-size: 1.2rem; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; color: var(--text-mid); margin-bottom: 20px; font-size: 1.05rem; }
.testimonial-card strong { color: var(--text-dark); }
.test-author { display: flex; align-items: center; gap: 16px; }
.author-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.test-author div { font-size: 0.9rem; color: var(--text-light); }
.test-author strong { font-size: 1rem; display: block; color: var(--text-dark); }

/* === OFFER === */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 900px; margin: 40px auto 0; }
.plan-card { background: white; border-radius: var(--radius-lg); padding: 40px; border: 2px solid var(--gray); text-align: center; position: relative; display: flex; flex-direction: column; }
.plan-header h3 { font-size: 1.8rem; margin-bottom: 6px; }
.plan-header p { color: var(--text-light); font-size: 0.95rem; }
.plan-price { font-size: 3.5rem; font-weight: 900; line-height: 1; color: var(--text-dark); margin: 20px 0; }
.currency, .cents { font-size: 1.5rem; vertical-align: text-top; }
.plan-features { list-style: none; margin-bottom: 30px; flex: 1; text-align: left; }
.plan-features li { padding: 12px 0; border-bottom: 1px solid var(--gray-light); font-size: 1.05rem; font-weight: 700; color: var(--text-mid); }
.basic-btn { background: white; color: var(--text-dark); border: 2px solid var(--gray); box-shadow: none; width: 100%; }
.basic-btn:hover { background: var(--gray-light); border-color: var(--text-mid); transform: none; box-shadow: none; }

/* Basic plan: visually dimmed */
.basic-plan {
  opacity: 0.85;
  border-color: var(--gray);
}
.basic-plan .plan-header h3 { color: var(--text-light); font-size: 1.5rem; }
.basic-features .feature-missing {
  color: #b0b8c8;
  font-weight: 600;
}

.complete-plan { border-color: var(--green); box-shadow: 0 20px 50px rgba(0,200,83,0.15); transform: scale(1.03); z-index: 10; }
.badge-popular { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--text-dark); font-weight: 900; font-size: 0.85rem; padding: 6px 20px; border-radius: 30px; }
.plan-price-wrap { margin: 20px 0; }
.old-price { color: var(--text-light); text-decoration: line-through; font-size: 0.95rem; }
.installment { color: var(--green); font-weight: 800; font-size: 1rem; }
.complete-plan .btn-cta { width: 100%; }

/* === GUARANTEE === */
.guarantee-section { background: white; }
.guarantee-box { background: var(--gray-light); max-width: 800px; margin: 0 auto; padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--gray); display: flex; align-items: center; gap: 30px; }
.g-seal { width: 100px; height: 100px; background: var(--text-dark); color: white; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.g-seal span { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.g-seal small { font-weight: 800; font-size: 0.8rem; }
.risk-zero { color: var(--green); font-weight: 900; letter-spacing: 1px; margin-bottom: 4px; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 30px auto 0; }
.faq-item { border: 1px solid var(--gray); margin-bottom: 12px; border-radius: var(--radius); background: white; overflow: hidden; cursor: pointer; }
.faq-question { padding: 18px 24px; font-weight: 800; font-size: 1.05rem; display: flex; justify-content: space-between; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--text-mid); }
.faq-item.active { border-color: var(--blue); }
.faq-item.active .faq-question { color: var(--blue); }
.faq-item.active .faq-answer { padding: 0 24px 18px; max-height: 200px; }

/* === FINAL CTA === */
.final-cta-section { background: var(--text-dark); color: white; padding: 80px 0; }
.final-cta-box { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.final-content h2 { font-size: 2.5rem; margin-bottom: 16px; color: white; }
.final-content h2 span { color: var(--yellow); }
.final-sub { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.final-text { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 30px; line-height: 1.7; }
.final-image img { border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* === POPUP UPSELL === */
.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1000; backdrop-filter: blur(4px); }
.popup-upsell { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 500px; background: white; border-radius: var(--radius-lg); z-index: 1001; box-shadow: 0 30px 60px rgba(0,0,0,0.3); overflow: hidden; animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes popIn { from { transform: translate(-50%, -40%) scale(0.9); opacity: 0; } to { transform: translate(-50%, -50%) scale(1); opacity: 1; } }
.popup-header { background: #dc2626; color: white; text-align: center; padding: 16px; font-weight: 900; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.5px; }
.popup-body { padding: 30px; text-align: center; }
.popup-text { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 24px; line-height: 1.5; }
.popup-text strong { color: var(--green); font-size: 1.3rem; }
.popup-includes { background: var(--gray-light); padding: 20px; border-radius: var(--radius); margin-bottom: 24px; text-align: left; border: 1px solid var(--gray); }
.popup-includes h4 { margin-bottom: 12px; font-size: 1rem; }
.popup-includes ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.popup-includes ul li { font-size: 0.9rem; font-weight: 700; color: var(--text-mid); }
.popup-btn { width: 100%; margin-bottom: 16px; padding: 20px; font-size: 1.1rem; }
.btn-secondary { color: var(--text-light); text-decoration: underline; font-weight: 700; font-size: 0.95rem; }

/* === FOOTER COMPLIANCE === */
.footer-compliance {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  color: rgba(255,255,255,0.3);
}

/* === RESPONSIVE === */
@media(max-width: 900px) {
  .hero-grid, .problem-compare, .benefits-grid, .testimonials-grid, .plans-grid, .final-cta-box { grid-template-columns: 1fr; gap: 30px; }
  .platform-grid, .inside-grid, .real-previews-grid { grid-template-columns: repeat(2, 1fr); }
  .complete-plan { transform: scale(1); }
  .horizontal-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
  .popup-includes ul { grid-template-columns: 1fr; }
  .final-image { order: -1; }
  .problem-compare { display: flex; flex-direction: column; }
  
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-cta-wrap { text-align: center; width: 100%; }
  .hero-seals { justify-content: center; }
  .hero-badges { justify-content: center; }

  .pain-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-box { grid-template-columns: 1fr; text-align: center; }
  .expert-img img { max-width: 300px; margin: 0 auto; }
}

@media(max-width: 600px) {
  .platform-grid, .premium-inside-grid, .real-previews-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; text-align: center; }
  .hero-sub { text-align: center; }
  .section-title { font-size: 1.6rem; text-align: center; }
  .btn-cta.large { font-size: 0.9rem; padding: 16px 24px; width: 100%; }
  
  .pain-cards-grid { grid-template-columns: 1fr; }
  .pain-bridge { font-size: 1.05rem; padding: 16px 20px; text-align: center; display: block; }
  
  .villain-block { padding: 24px 18px; text-align: center; }
  .villain-title { font-size: 1.3rem; text-align: center; }
  .mech-subtitle, .mech-mechanism-sub { text-align: center; }
  
  .expert-img img { max-width: 200px; }
  
  .final-content { text-align: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */

/* -- Faixa de Segurança Superior -- */
.footer-security-bar {
  background: #0a0f2e;
  border-top: 2px solid #1e3a8a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.security-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
}
.sec-icon { font-size: 1.6rem; flex-shrink: 0; }
.sec-title {
  color: #fff; font-size: 0.9rem; font-weight: 800;
  line-height: 1.2;
}
.sec-desc {
  color: rgba(255,255,255,0.45); font-size: 0.75rem;
}
.sec-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* -- Corpo do Rodapé -- */
.site-footer-main { background: #080d24; }

.footer-body {
  background: #0d1340;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

/* Coluna Marca */
.footer-logo {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #2E5BFF, #1a3ab8);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(46,91,255,0.4);
}
.footer-logo-label {
  font-size: 0.7rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-logo-name {
  font-size: 0.95rem; font-weight: 900;
  color: #fff;
}
.footer-brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem; line-height: 1.65;
  margin-bottom: 24px;
}

/* Selos de Confiança (chips) */
.trust-seals {
  display: flex; flex-direction: column; gap: 10px;
}
.trust-seal {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 9px 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem; font-weight: 700;
  transition: background 0.2s;
}
.trust-seal:hover { background: rgba(255,255,255,0.09); }
.ts-icon { font-size: 1rem; }

/* Coluna Links */
.footer-col-title {
  color: #fff; font-size: 0.8rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
  display: block;
}
.footer-links li a:hover { color: #fff; }

/* Coluna Pagamento */
.footer-pay-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem; line-height: 1.5;
  margin-bottom: 20px;
}
.payment-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.pay-badge {
  width: 56px; height: 36px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: default;
  transition: transform 0.2s, border-color 0.2s;
}
.pay-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.3);
}
.pay-badge svg { width: 100%; height: 100%; display: block; }

/* SSL Badge */
.ssl-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}
.ssl-icon { font-size: 1.6rem; flex-shrink: 0; }
.ssl-title {
  color: #4ade80; font-size: 0.88rem; font-weight: 900;
  line-height: 1.2;
}
.ssl-desc {
  color: rgba(255,255,255,0.45); font-size: 0.75rem;
  margin-top: 2px;
}

/* LGPD Note */
.lgpd-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem; line-height: 1.5;
}
.lgpd-note strong { color: rgba(255,255,255,0.65); }

/* -- Footer Bottom top row -- */
.footer-bottom-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
  overflow: hidden;
}

/* -- Footer Bottom -- */
.footer-bottom {
  background: #060a1e;
  padding: 20px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 100%;
}
.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem; font-weight: 700;
  word-break: break-word;
}
.footer-legal-links {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem; font-weight: 700;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: #fff; }
.footer-legal-links span { color: rgba(255,255,255,0.2); }
.footer-disclaimer {
  color: rgba(255,255,255,0.2);
  font-size: 0.72rem;
  max-width: 760px;
  line-height: 1.6;
  text-align: center;
  margin-top: 6px;
  word-break: break-word;
}

/* -- Plataformas reconhecidas -- */
.footer-platforms {
  background: #080d24;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-platforms-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.fp-label {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fp-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fp-badge {
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
  cursor: default;
}
.fp-badge:hover { opacity: 1; transform: translateY(-1px); }
.fp-badge svg { height: 100%; width: auto; display: block; }
.fp-ssl-line {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* -- Footer separator -- */
.footer-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(46,91,255,0.3), rgba(0,200,83,0.2), transparent);
}

/* -- Footer Responsive -- */
@media(max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .security-bar-inner { gap: 0; }
  .sec-item { padding: 8px 16px; }
  .sec-divider { display: none; }
  .footer-bottom-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-platforms-inner { flex-direction: column; gap: 10px; text-align: center; }
}
@media(max-width: 600px) {
  .sec-item { flex-direction: column; text-align: center; gap: 6px; padding: 10px 12px; }
  .footer-body { padding: 40px 0 30px; }
  .payment-badges { gap: 6px; }
  .pay-badge { width: 48px; height: 30px; }
  .fp-badges { flex-wrap: wrap; justify-content: center; }
}
