/* ==========================================================================
   THE MATURITY BLUEPRINT - LANDING PAGE STYLES
   Design System: Technical blueprint style (Navy, Steel Blue, Terracotta, Eggshell)
   ========================================================================== */

/* Variables & Design Tokens */
:root {
  --bg-color: #f5f4f0;
  --bg-paper: #faf9f6;
  --primary-color: #1b2d42;
  --primary-rgb: 27, 45, 66;
  --secondary-color: #4e7596;
  --accent-color: #c85a32;
  --accent-rgb: 200, 90, 50;
  --accent-hover: #b04923;
  --line-color: #d8d4c7;
  --line-soft: #e8e6df;
  --text-color: #2d3748;
  --text-muted: #5a6a85;
  --white: #ffffff;

  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Fira Code', 'Courier New', Courier, monospace;

  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 4px;
  /* Crisp technical corners */
}

/* CSS Reset & Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  font-size: 16px;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;

  /* Technical Blueprint Grid Pattern */
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    linear-gradient(rgba(232, 230, 223, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 230, 223, 0.5) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: center center;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-left: 1px solid var(--line-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--accent-color);
}

.font-mono {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Reusable Blueprint Components & Utilities */
.bg-branco {
  background-color: var(--bg-paper) !important;
  background-image: none !important;
}

.bg-cinza {
  background-color: var(--bg-color) !important;
  background-image: none !important;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Blueprint Border Frame */
.blueprint-border {
  border: 1px solid var(--line-color);
  position: relative;
  background: var(--bg-paper);
}

/* Corner Indicators (+) */
.blueprint-border::before,
.blueprint-border::after,
.blueprint-border-corners::before,
.blueprint-border-corners::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 5;
}

/* Add corner marks to specific blocks */
.corner-mark {
  position: relative;
}

.corner-mark::before {
  content: '+';
  position: absolute;
  top: -6px;
  left: -6px;
  font-family: var(--font-mono);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
}

.corner-mark.top-right::after {
  content: '+';
  position: absolute;
  top: -6px;
  right: -6px;
  font-family: var(--font-mono);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
}

.corner-mark.bottom-left::after {
  content: '+';
  position: absolute;
  bottom: -6px;
  left: -6px;
  font-family: var(--font-mono);
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
}

/* Grid overlay coordinates */
.tech-label {
  font-family: var(--font-mono);
  color: var(--secondary-color);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-label::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: var(--secondary-color);
}

.section-num {
  font-family: var(--font-mono);
  color: var(--accent-color);
  font-size: 0.8rem;
  opacity: 0.8;
  display: block;
  margin-bottom: 0.5rem;
}

/* Blueprint Accents & Ticks */
.blueprint-accent-bar {
  height: 4px;
  background-color: var(--accent-color);
  width: 100%;
  margin-top: 1rem;
}

.blueprint-header-tag {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
  box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.15);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(var(--accent-rgb), 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-group .btn {
  width: 420px;
  max-width: 100%;
}

/* Responsive navigation */
header {
  border-bottom: 1px solid var(--line-color);
  background-color: rgba(245, 244, 240, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--secondary-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -3px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary-color);
}

nav a:hover,
nav a.active {
  color: var(--accent-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.mobile-menu-btn span:nth-child(1) {
  top: 4px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 11px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 18px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* Sections general */
section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--line-color);
  position: relative;
}

.section-title-wrap {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  padding: 0 1rem;
}

.section-title::before,
.section-title::after {
  content: '[';
  color: var(--secondary-color);
  font-family: var(--font-mono);
  font-weight: 300;
  position: absolute;
  top: 0;
}

.section-title::before {
  left: -10px;
}

.section-title::after {
  content: ']';
  right: -10px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   2. Hero Section (Redesigned - Palestra)
   ========================================================================== */

/* Barra de destaque topo */
.hero-top-bar {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 0;
  text-align: center;
}

.hero-top-bar span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero principal */
.hero {
  padding: 4.5rem 0 5rem;
  overflow: hidden;
  background-color: var(--bg-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* Conteúdo esquerda */
.hero-palestra-badge {
  display: inline-flex;
  align-items: center;
  background-color: #fdf6f2; /* Soft peach background */
  color: var(--accent-color); /* Orange/terracotta text */
  border: 1px solid rgba(200, 90, 50, 0.25); /* Thin orange outline */
  padding: 0.45rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 100px; /* Fully rounded capsule */
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  gap: 0.6rem;
}

.hero-palestra-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.1;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-subtitle .highlight-text {
  color: var(--accent-color);
  font-weight: 700;
}


/* Botão Hero */
.btn-hero-palestra {
  background-color: var(--accent-color);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1.05rem); /* Responsive font size */
  padding: 0.95rem 1.5rem; /* Tightened padding to fit 1 line */
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  width: 100%;
  max-width: 460px;
  white-space: nowrap; /* Enforce single line */
}

.btn-hero-palestra:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-hero-palestra .btn-icon {
  flex-shrink: 0;
}

.hero-cta-container {
  margin-bottom: 1.5rem;
}

.hero-cta-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.8rem;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 460px;
}

.hero-cta-warning svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Details row */
.hero-details-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
}

.detail-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}


/* Imagem direita com moldura */
.hero-visual-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: visible;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--line-color);
  background: var(--bg-paper);
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background-color: var(--bg-paper);
  border: 1px solid var(--line-color);
  border-radius: 6px;
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 480px; /* Imagem maior e mais alta */
  border-radius: 6px;
}


/* ==========================================================================
   Faixa de 4 cards abaixo da Hero
   ========================================================================== */
.hero-info-bar {
  background-color: var(--bg-paper);
  border-top: 1px solid var(--line-color);
  border-bottom: 1px solid var(--line-color);
  padding: 2rem 0;
}

.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.hero-info-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background-color: var(--bg-color);
  border: 1px solid var(--line-color);
  border-radius: 4px;
}

.hero-info-icon {
  color: var(--accent-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-info-card div {
  display: flex;
  flex-direction: column;
}

.hero-info-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-info-value {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

/* ==========================================================================
   Seção: O que você vai descobrir
   ========================================================================== */
.hero-discover {
  padding: 4.5rem 0 5rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--line-color);
}

.section-title-discover {
  font-family: var(--font-title);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 3.5rem;
}

.discover-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Card base */
.discover-highlight-card {
  background-color: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 2.25rem 1.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
}

.discover-highlight-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.08);
}

/* Ícone circular */
.discover-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--accent-color);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.discover-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.discover-highlight-card:hover .discover-highlight-icon {
  transform: scale(1.05);
}

/* Texto do card */
.discover-highlight-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.45;
  margin: 0;
}

/* Footer row */
.discover-footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.discover-footer-row .footer-row-icon {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* SVG Line Drawing Animation */
.svg-blueprint-compass {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.svg-blueprint-compass path,
.svg-blueprint-compass line,
.svg-blueprint-compass circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLines 4s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.svg-blueprint-compass .grid-line {
  stroke: var(--line-color);
  stroke-width: 0.5;
  stroke-dasharray: 4 4;
  animation: drawLines 2s forwards ease-in-out;
}

.svg-blueprint-compass .main-drawing {
  stroke: var(--primary-color);
  stroke-width: 1.5;
}

.svg-blueprint-compass .accent-drawing {
  stroke: var(--accent-color);
  stroke-width: 2;
}

.svg-blueprint-compass .measurement {
  stroke: var(--secondary-color);
  stroke-width: 1;
  stroke-dasharray: 2 2;
}

@keyframes drawLines {
  to {
    stroke-dashoffset: 0;
  }
}

/* 2.5 Differentials Section */
.differentials-section {
  padding: 3rem 0 4rem;
}

.differentials-card {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.diff-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.diff-icon {
  color: var(--accent-color);
  margin-bottom: 0.8rem;
}

.diff-icon svg {
  width: 28px;
  height: 28px;
}

.diff-title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
}

.differentials-highlight {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .differentials-card {
    padding: 2rem 1.5rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .differentials-highlight {
    font-size: 1rem;
    padding-top: 1.5rem;
  }
}

/* 3. Palestra Section */
.palestra-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: stretch;
  background: var(--bg-paper);
}

.palestra-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.palestra-badge {
  background-color: var(--accent-color);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.palestra-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.palestra-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.palestra-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.palestra-detail-card {
  border: 1px solid var(--line-soft);
  padding: 1.2rem;
  background: var(--bg-color);
  border-radius: var(--border-radius);
}

.palestra-detail-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-family: var(--font-mono);
  margin-bottom: 0.4rem;
}

.palestra-detail-card p {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  gap: 0.8rem;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line-color);
  min-width: 65px;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  background: var(--bg-paper);
}

.countdown-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent-color);
  line-height: 1.1;
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Palestra Info Card */
.palestra-info-card {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-color);
}

.palestra-info-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.palestra-info-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.palestra-benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.palestra-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--white);
}

.benefit-check {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.palestra-alert-box {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--accent-color);
  padding: 1.25rem;
  margin-bottom: 2rem;
  border-radius: 0 4px 4px 0;
}

.palestra-alert-box strong {
  display: block;
  color: var(--accent-color);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.palestra-alert-box p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.btn-sympla {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  display: block;
  text-align: center;
}

/* 4. Comparison Section */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.compare-card {
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--line-color);
}

.compare-card.school {
  background: rgba(27, 45, 66, 0.02);
  border-top: 4px solid var(--secondary-color);
}

.compare-card.life {
  background: rgba(200, 90, 50, 0.02);
  border-top: 4px solid var(--accent-color);
}

.compare-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.compare-icon-school {
  color: var(--secondary-color);
}

.compare-icon-life {
  color: var(--accent-color);
}

.compare-list {
  list-style: none;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.compare-item:last-child {
  border-bottom: none;
}

.compare-check {
  font-size: 1.1rem;
  margin-top: 2px;
}

.school .compare-check {
  color: var(--secondary-color);
}

.life .compare-check {
  color: var(--accent-color);
}

.compare-item-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.compare-item-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Parent Warning Alert Banner */
.warning-banner {
  border: 1px solid var(--accent-color);
  background-color: rgba(200, 90, 50, 0.05);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  border-radius: var(--border-radius);
}

.warning-icon {
  font-size: 2.2rem;
  color: var(--accent-color);
  line-height: 1;
}

.warning-content h4 {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.warning-content p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 1.05rem;
  line-height: 1.5;
}

/* 5. Toy Factory Dynamic Section */
.dynamic-flow-wrap {
  margin-bottom: 4rem;
}

.flow-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
}

.flow-title-subtitle {
  text-align: center;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--primary-color);
  opacity: 0.7;
  margin-bottom: 2.4rem;
  letter-spacing: 0.02em;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Connecting arrows in desktop */
@media (min-width: 992px) {
  .flow-steps::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 8%;
    right: 8%;
    height: 1px;
    border-top: 1px dashed var(--line-color);
    z-index: 1;
  }
}

.flow-step-card {
  background: var(--bg-paper);
  border: 1px solid var(--line-color);
  padding: 1.5rem 1rem;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.flow-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.flow-step-num {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 1.2rem;
  border: 2px solid var(--bg-paper);
  box-shadow: 0 0 0 1px var(--line-color);
  transition: var(--transition-smooth);
}

.flow-step-card:hover .flow-step-num {
  background-color: var(--accent-color);
}

.flow-step-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.flow-step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  border: 1px solid var(--line-color);
  background: var(--bg-paper);
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  border-color: var(--primary-color);
}

.pillar-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.pillar-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pillar-card h3 span {
  font-size: 0.75rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.equation-box {
  background-color: var(--bg-color);
  border: 1px solid var(--line-color);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.6rem;
  margin-top: 1rem;
  border-radius: var(--border-radius);
  color: var(--primary-color);
  text-align: center;
  font-weight: 500;
}

.equation-accent {
  color: var(--accent-color);
  font-weight: 700;
}

/* Pillars grid 3 columns */
.pillars-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-list {
  list-style: none;
  margin-top: 1rem;
}

.pillar-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.pillar-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
}

/* Card zoom and shadow hover effect */
.pillars-grid-3 .pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(27, 45, 66, 0.08);
}

/* Simulador intro layout */
.simulador-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.simulador-intro-col h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-family: var(--font-title);
  position: relative;
  padding-left: 1rem;
}

.simulador-intro-col h4::before {
  content: '[';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
}

.simulador-intro-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Seção Diferencial */
.diferencial-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.diferencial-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-title);
  font-weight: 800;
}

.diferencial-p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.diferencial-p strong {
  color: var(--primary-color);
}

.diferencial-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.diferencial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.diferencial-badge:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.15);
}

.diferencial-box {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: 0 15px 35px rgba(27, 45, 66, 0.12);
  border: 1px solid var(--line-color);
}

.diferencial-quote-icon {
  font-size: 4rem;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--font-title);
  margin-bottom: 0.5rem;
  height: 2.5rem;
  font-weight: bold;
}

.diferencial-quote-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.diferencial-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.diferencial-stat-item {
  flex: 1;
}

.diferencial-stat-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
  display: block;
}

.diferencial-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}

/* 6. GAO / Alavanca Section */
.gao-section {
  background-color: var(--bg-paper);
}

.gao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gao-desc h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.gao-desc h4 {
  font-family: var(--font-mono);
  color: var(--accent-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.gao-desc p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Compare list of Company vs Youth Life */
.gao-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.gao-compare-card {
  padding: 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--border-radius);
  background: var(--bg-color);
}

.gao-compare-card h5 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding-bottom: 0.2rem;
}

.company-card h5 {
  color: var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

.youth-card h5 {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.gao-compare-card ul {
  list-style: none;
  font-size: 0.85rem;
}

.gao-compare-card li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 15px;
}

.gao-compare-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.company-card li::before {
  color: var(--secondary-color);
}

.youth-card li::before {
  color: var(--accent-color);
}

/* GAO Interactive Simulator */
.gao-simulator {
  border: 1px solid var(--line-color);
  background-color: var(--bg-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.gao-simulator::before {
  content: 'GAO SIMULATOR // SEC. 06';
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.svg-gao-lever {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 2rem;
}

.lever-pivot {
  fill: var(--primary-color);
}

.lever-beam {
  stroke: var(--primary-color);
  stroke-width: 4;
  stroke-linecap: round;
  transition: transform 0.2s ease-out;
  transform-origin: 200px 180px;
  /* Middle of canvas, height of pivot */
}

.lever-weight-input {
  fill: var(--secondary-color);
  transition: transform 0.2s ease-out;
  transform-origin: 200px 180px;
}

.lever-weight-output {
  fill: var(--accent-color);
  transition: transform 0.2s ease-out;
  transform-origin: 200px 180px;
}

.lever-arrow-indicator {
  stroke: var(--accent-color);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 4 4;
  transition: transform 0.2s ease-out;
  transform-origin: 200px 180px;
}

.lever-cracks {
  stroke: #ff4a4a;
  stroke-width: 1.5;
  fill: none;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.slider-container {
  width: 100%;
  text-align: center;
}

.slider-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  display: block;
  font-weight: 600;
}

.gao-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--line-color);
  outline: none;
  margin-bottom: 1.5rem;
}

.gao-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-color);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: background 0.15s ease;
}

.gao-slider::-webkit-slider-thumb:hover {
  background: var(--accent-hover);
}

.sim-output-box {
  border: 1px solid var(--line-color);
  padding: 1rem;
  border-radius: var(--border-radius);
  background: var(--bg-paper);
  width: 100%;
  text-align: center;
}

.sim-output-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.sim-output-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-color);
}

.sim-output-alert {
  font-size: 0.8rem;
  color: #ff4a4a;
  margin-top: 0.4rem;
  font-weight: 600;
  display: none;
}

/* 7. Gráfico Radar (Pentágono) Section */
.radar-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.radar-chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-paper);
  border: 1px solid var(--line-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  position: relative;
}

.radar-chart-container::before {
  content: 'SKILLS ASSESSMENT // RADAR CHART';
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.svg-radar-chart {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.radar-grid-poly {
  fill: none;
  stroke: var(--line-color);
  stroke-width: 0.5;
}

.radar-axis-line {
  stroke: var(--line-color);
  stroke-dasharray: 2 2;
  stroke-width: 1;
}

.radar-label-text {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  fill: var(--primary-color);
  text-anchor: middle;
}

.radar-poly-before {
  fill: rgba(78, 117, 150, 0.15);
  stroke: var(--secondary-color);
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.radar-poly-after {
  fill: rgba(200, 90, 50, 0.25);
  stroke: var(--accent-color);
  stroke-width: 2;
  transition: var(--transition-smooth);
}

.radar-legend {
  position: absolute;
  bottom: 15px;
  display: flex;
  gap: 1.5rem;
}

.radar-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.legend-before {
  background-color: var(--secondary-color);
}

.legend-after {
  background-color: var(--accent-color);
}

.radar-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.radar-info-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.skills-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.skill-item {
  border: 1px solid var(--line-soft);
  padding: 1rem;
  background: var(--bg-paper);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.skill-item:hover {
  border-color: var(--primary-color);
}

.skill-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.skill-item-bullet {
  color: var(--accent-color);
}

.skill-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.4;
}

/* 8. Course & Sergio Section */
.course-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.course-schedule-card {
  border: 1px solid var(--line-color);
  background: var(--bg-paper);
  padding: 3rem;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-schedule-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.schedule-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-label {
  font-weight: 600;
  color: var(--primary-color);
}

.schedule-value {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.schedule-value.highlight {
  color: var(--accent-color);
  font-weight: 700;
}

.teacher-card {
  border: 1px solid var(--line-color);
  background: var(--bg-paper);
  padding: 3rem;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teacher-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.teacher-img-wrap {
  width: 60%;
  margin: 0 auto 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.teacher-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.teacher-header-text h3 {
  margin-bottom: 0.2rem;
}

.teacher-info {
  padding: 0;
}

.teacher-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--secondary-color);
  text-align: center;
  padding: 1rem;
}

.teacher-photo-placeholder svg {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  fill: currentColor;
}

.teacher-photo-placeholder span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.teacher-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.teacher-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 0.05em;
}

.teacher-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Learning outcomes banner */
.outcomes-banner {
  border: 1px dashed var(--line-color);
  background-color: rgba(27, 45, 66, 0.01);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.outcomes-banner h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.outcome-card {
  padding: 1rem;
}

.outcome-icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
}

.outcome-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.outcome-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 9. FAQ Section */
.faq-max-width {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line-color);
  background: var(--bg-paper);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-question h4 {
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 600;
  padding-right: 1.5rem;
}

.faq-toggle-icon {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--secondary-color);
  transition: var(--transition-smooth);
  user-select: none;
}

.faq-item.active {
  border-color: var(--primary-color);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}

/* 10. Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line-color);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 3px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* ---- 1200px: Large tablets / small laptops ---- */
@media (max-width: 1200px) {
  :root {
    --container-width: 960px;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

/* ---- 992px: Tablets ---- */
@media (max-width: 992px) {
  :root {
    --container-width: 720px;
  }

  section {
    padding: 4rem 0;
  }

  /* Hero */
  .hero {
    padding: 3.5rem 0 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    text-align: center;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-palestra-badge {
    margin: 0 auto 1.5rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-details-row {
    justify-content: center;
  }


  .btn-group {
    justify-content: center;
    align-items: center;
  }

  .btn-hero-palestra {
    margin: 0 auto;
  }

  .hero-cta-warning {
    margin: 0.8rem auto 0;
  }

  .hero-visual-wrapper {
    order: 2;
  }

  .hero-img-frame {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Comparison */
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-card {
    padding: 2rem;
  }

  /* Simulador Flow */
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-step-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .flow-step-num {
    margin: 0;
    flex-shrink: 0;
  }

  .flow-step-card h4 {
    margin-bottom: 0.2rem;
  }

  /* Pillar cards */
  .pillars-grid,
  .pillars-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  /* Diferencial */
  .diferencial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .diferencial-img-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .diferencial-img {
    max-width: 420px;
    margin: 0 auto;
  }

  /* GAO / Radar */
  .gao-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .radar-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Course */
  .course-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .course-schedule-card {
    padding: 2rem;
  }

  /* Palestra */
  .palestra-box {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .palestra-form-wrap {
    border-left: none;
    border-top: 1px solid var(--line-color);
  }

  /* Outcomes */
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcomes-banner {
    padding: 2rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: span 2;
  }
}

/* ---- 768px: Mobile ---- */
@media (max-width: 768px) {
  :root {
    --container-width: 100%;
  }

  /* Container padding tighter on mobile */
  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 3.5rem 0;
  }

  /* Navigation */
  nav ul {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav.active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-paper);
    border-bottom: 1px solid var(--line-color);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 99;
  }

  /* Hero */
  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero-palestra-badge {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-details-row {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }

  .detail-item {
    font-size: 0.85rem;
  }


  .btn-hero-palestra {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .hero-img-frame {
    max-width: 420px;
  }

  .hero-img {
    max-height: 320px;
  }

  .hero-info-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-info-card {
    padding: 0.8rem 1rem;
  }

  .hero-info-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-info-value {
    font-size: 0.82rem;
  }

  .discover-grid-four {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .discover-highlight-card {
    padding: 1.75rem 1.5rem;
    gap: 1rem;
  }

  .discover-footer-row {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    margin-top: 2.5rem;
  }

  /* Section titles */
  .section-title-wrap {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
    padding: 0 0.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Differentials section */
  .differentials-card {
    padding: 2rem 1.5rem;
  }

  /* Compare section */
  .compare-card {
    padding: 1.8rem 1.5rem;
  }

  /* Warning Banner */
  .warning-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .warning-icon {
    justify-self: center;
  }

  /* Simulador */
  .simulador-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .simulador-intro-col p {
    margin-bottom: 1rem;
  }

  /* Pillar cards */
  .pillars-grid,
  .pillars-grid-3 {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    padding: 1.5rem 1.2rem;
  }

  .pillar-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .pillar-card p {
    font-size: 0.85rem;
  }

  .pillar-list li {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .pillar-list li::before {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  /* Diferencial */
  .diferencial-content {
    margin-bottom: 0;
  }

  .diferencial-title {
    font-size: 2rem;
  }

  .diferencial-badges-wrap {
    margin-top: 1.5rem;
  }

  .diferencial-stats-row {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .diferencial-stat-item {
    flex: 0 0 auto;
    min-width: calc(33% - 0.5rem);
  }

  /* GAO compare & Skills collapse */
  .gao-compare-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .skills-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Palestra */
  .palestra-info {
    padding: 2rem 1.5rem;
  }

  .palestra-info-card {
    padding: 2rem 1.5rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .palestra-title {
    font-size: 1.7rem;
  }

  .palestra-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Countdown */
  .countdown-box {
    min-width: 58px;
    padding: 0.4rem 0.5rem;
  }

  .countdown-num {
    font-size: 1.2rem;
  }

  .countdown-label {
    font-size: 0.55rem;
  }

  /* Course */
  .course-schedule-card {
    padding: 1.5rem;
  }

  .course-schedule-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.75rem 0;
  }

  .schedule-value {
    font-size: 0.85rem;
  }

  /* Teacher */
  .teacher-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 2rem 1.5rem;
  }

  .teacher-img-wrap {
    width: 100%;
    max-width: 220px;
  }

  /* Outcomes */
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-banner {
    padding: 2rem 1.5rem;
  }

  /* FAQ */
  .faq-question {
    padding: 1.2rem;
  }

  .faq-question h4 {
    font-size: 0.95rem;
    padding-right: 0.75rem;
  }

  .faq-answer-inner {
    padding: 0 1.2rem 1.2rem;
    padding-top: 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-about {
    grid-column: span 1;
  }

  /* Sympla button */
  .btn-sympla {
    white-space: normal;
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
    text-align: center;
  }

  /* Footer slim */
  .footer-slim-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-slim-brand {
    align-items: center;
  }

  .footer-slim-wa {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .footer-logo-left {
    max-height: 100px;
    margin-bottom: 0.5rem;
  }

  .footer-logo-right {
    max-height: 70px;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
  }
}

/* ---- 576px: Small mobile ---- */
@media (max-width: 576px) {
  .container {
    padding: 0 1.2rem;
  }

  section {
    padding: 3rem 0;
  }

  /* Hero */
  .hero {
    padding: 2rem 0 2.5rem;
  }

  .hero-palestra-badge {
    font-size: 0.6rem;
    padding: 0.4rem 0.75rem;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-cta-container {
    width: 100%;
  }

  .btn-hero-palestra {
    font-size: 0.9rem;
    padding: 0.9rem 1rem;
    max-width: 100%;
  }

  .hero-details-row {
    gap: 0.6rem;
  }

  .detail-item {
    font-size: 0.8rem;
  }


  .hero-img-frame {
    max-width: 100%;
  }

  .hero-img {
    max-height: 260px;
  }

  .hero-info-cards {
    grid-template-columns: 1fr;
  }

  .hero-info-card {
    padding: 0.75rem 1rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.55rem;
  }

  /* Buttons */
  .btn-group .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.85rem 1.2rem;
    text-align: center;
  }

  /* Differentials card */
  .differentials-card {
    padding: 1.5rem 1rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Compare */
  .compare-card {
    padding: 1.5rem 1.2rem;
  }

  .compare-card h3 {
    font-size: 1.2rem;
  }

  /* Warning banner */
  .warning-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .warning-icon {
    justify-self: center;
  }

  /* Pillar list items */
  .pillar-list li {
    font-size: 0.82rem;
  }

  /* Diferencial */
  .diferencial-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Palestra */
  .palestra-info,
  .palestra-info-card {
    padding: 1.5rem 1.2rem;
  }

  .palestra-title {
    font-size: 1.5rem;
  }

  .palestra-info-card h3 {
    font-size: 1.4rem;
  }

  /* Countdown */
  .countdown-container {
    justify-content: space-between;
    flex-wrap: nowrap !important;
    gap: 0.4rem;
  }

  .countdown-box {
    min-width: 0;
    flex: 1;
    padding: 0.35rem 0.3rem;
  }

  .countdown-num {
    font-size: 1.1rem;
  }

  /* Course */
  .course-schedule-card {
    padding: 1.2rem;
  }

  .schedule-label {
    font-size: 0.85rem;
  }

  /* Teacher */
  .teacher-img-wrap {
    width: 80%;
  }

  /* FAQ */
  .faq-question {
    padding: 1rem;
  }

  .faq-question h4 {
    font-size: 0.9rem;
    padding-right: 0.6rem;
  }

  /* Outcomes */
  .outcomes-banner {
    padding: 1.5rem 1rem;
  }

  .outcome-card {
    padding: 0.75rem;
  }

  /* CTA Final */
  .cta-final-title {
    font-size: 2rem;
  }

  .cta-final-section {
    padding: 4rem 0;
  }

  .btn-cta-final {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
  }

  .btn-cta-outline {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
  }
}

/* ---- 400px: Very small phones (iPhone SE, Galaxy A, etc.) ---- */
@media (max-width: 400px) {
  .container {
    padding: 0 1rem;
  }

  .logo-main {
    font-size: 1.25rem;
  }
  
  .logo-sub {
    font-size: 0.6rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .hero-palestra-badge {
    font-size: 0.58rem;
    padding: 0.35rem 0.65rem;
  }

  .btn-hero-palestra {
    font-size: 0.85rem;
    padding: 0.85rem 0.8rem;
    gap: 0.5rem;
  }


  .detail-item span {
    font-size: 0.78rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .section-num {
    font-size: 0.7rem;
  }

  .btn {
    font-size: 0.88rem;
    padding: 0.8rem 1rem;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .differentials-card {
    padding: 1.2rem 0.9rem;
  }

  .diff-title {
    font-size: 0.9rem;
  }

  .compare-card {
    padding: 1.2rem 1rem;
  }

  .flow-step-card {
    gap: 1rem;
    padding: 1rem;
  }

  .palestra-info,
  .palestra-info-card {
    padding: 1.2rem 1rem;
  }

  .palestra-title {
    font-size: 1.35rem;
  }

  .faq-question h4 {
    font-size: 0.88rem;
  }

  .cta-final-title {
    font-size: 1.65rem;
  }

  .cta-final-subtitle {
    font-size: 0.92rem;
  }

  .outcomes-banner h3 {
    font-size: 1.3rem;
  }

  .warning-content p {
    font-size: 0.95rem;
  }
}


/* ==========================================================================
   Image Styles (Hero and Speaker)
   ========================================================================== */

.hero-blueprint-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border: 1px solid var(--line-color);
  padding: 0.8rem;
  background-color: var(--white);
  box-shadow: 0 15px 35px rgba(27, 45, 66, 0.08);
  position: relative;
  transition: var(--transition-smooth);
  animation: floatImage 6s ease-in-out infinite;
}

.hero-blueprint-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(27, 45, 66, 0.12);
}

/* Imagem da Seção Diferencial - moldura igual ao Hero, mas limitada à coluna do grid */
.diferencial-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line-color);
  padding: 0.8rem;
  background-color: var(--white);
  box-shadow: 0 15px 35px rgba(27, 45, 66, 0.08);
  position: relative;
  transition: var(--transition-smooth);
  animation: floatImage 6s ease-in-out infinite;
  box-sizing: border-box;
}

.diferencial-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(27, 45, 66, 0.12);
}



@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   11. Final CTA Section
   ========================================================================== */

.cta-final-section {
  background-color: var(--bg-color);
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px),
    linear-gradient(rgba(232, 230, 223, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 230, 223, 0.5) 1px, transparent 1px);

  background-size:
    100px 100px,
    100px 100px,
    20px 20px,
    20px 20px;

  background-position: center center;

  border-bottom: none;
  padding: 6rem 0;
}

.cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-final-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(200, 90, 50, 0.18);
  border: 1px solid rgba(200, 90, 50, 0.4);
  color: var(--accent-color);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-badge-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.cta-final-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  margin: 0;
}

.cta-final-title em {
  color: var(--accent-color);
  font-style: italic;
}

.cta-final-subtitle {
  color: var(--text-muted);
}

.cta-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  max-width: 480px;
}

.btn-cta-final {
  width: 100%;
  gap: 0.7rem;
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(200, 90, 50, 0.35);
}

.btn-cta-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-cta-outline:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.15);
}

.cta-final-note-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.cta-final-note {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 4px;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

.cta-final-note strong {
  color: var(--accent-color);
  font-weight: 700;
}

.cta-final-note-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

/* ==========================================================================
   12. Slim Footer
   ========================================================================== */

.footer-slim {
  background-color: #10192a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3.5rem 0 2.5rem;
  position: relative;
}

.footer-slim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.5;
}

.footer-slim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
}

/* Coluna 1: EMPODERE-SE (Brand) */
.footer-slim-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-slim-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-slim-logo span {
  color: var(--accent-color);
}

.footer-slim-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.45;
}

.footer-logo-left {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  margin-bottom: 0.75rem;
  object-fit: contain;
}

/* Coluna 2: WHATSAPP (WhatsApp + E-mail) */
.footer-slim-wa {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25D366;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  white-space: nowrap;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-email {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-email:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Coluna 3: APOIO (Support info) */
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.4rem;
}

.footer-column-title {
  color: rgba(150, 190, 230, 0.65);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-support-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-logo-right {
  max-height: 120px;
  width: auto;
  max-width: 100%;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
  object-fit: contain;
  border-radius: 4px;
  background-color: var(--white);
  padding: 3px;
}

/* Rodapé Inferior: Direitos reservados centralizados */
.footer-bottom {
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

/* Responsive: Media Queries */
@media (max-width: 768px) {
  .cta-final-title {
    font-size: 2rem;
  }

  .cta-final-section {
    padding: 4rem 0;
  }

  .footer-slim-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-slim-brand {
    align-items: center;
  }

  .footer-slim-wa {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .cta-final-title {
    font-size: 1.7rem;
  }

  .btn-cta-final {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
  }

  .btn-cta-outline {
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
  }
}

/* ==========================================================================
   SEÇÃO PLANO FAMÍLIA (6.5)
   ========================================================================== */
.plano-familia-section {
  padding: 6rem 0 0;
  overflow: hidden;
  position: relative;
}

.plano-familia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.plano-familia-img-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.familia-img-frame {
  position: relative;
  z-index: 2;
  margin-right: 15px;
  margin-bottom: 15px;
}

.decor-dots {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(var(--accent-color) 1.5px, transparent 1.5px);
  background-size: 8px 8px;
  z-index: 1;
  opacity: 0.3;
}

.familia-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  border: 1px solid var(--line-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: block;
  position: relative;
  z-index: 3;
}

.familia-img-frame::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  background-color: var(--bg-paper);
  border: 1px solid var(--line-color);
  border-radius: var(--border-radius);
  z-index: 2;
}

.plano-familia-content-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.family-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.family-tag svg {
  width: 16px;
  height: 16px;
}

.family-title {
  font-size: 2.8rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.family-title span {
  color: var(--primary-color);
}

.family-title .dot {
  color: var(--accent-color);
}

.family-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.family-description strong {
  color: var(--accent-color);
  font-weight: 700;
}

.family-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  margin-bottom: 0.5rem;
}

.family-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.family-benefit-item div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.family-benefit-item strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

.family-benefit-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.family-benefit-item .benefit-icon-wrapper {
  background-color: rgba(var(--accent-rgb), 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.family-benefit-item .benefit-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.family-benefit-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.family-benefit-item p strong {
  color: var(--primary-color);
  font-weight: 700;
  display: block;
  margin-bottom: 0.1rem;
}

.family-card-box {
  background-color: #fbf3eb;
  border: 1px solid rgba(200, 90, 50, 0.15);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 3rem auto 0;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(200, 90, 50, 0.08);
}

.family-card-top-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.family-card-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.family-card-icon-wrap {
  color: var(--accent-color);
  background: rgba(var(--accent-rgb), 0.08);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.family-card-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.family-card-info-text {
  display: flex;
  flex-direction: column;
}

.family-card-info-text h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.family-card-info-text h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.15rem;
  line-height: 1.1;
}

.family-card-info-text p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.family-card-divider {
  width: 1px;
  align-self: stretch;
  background-color: rgba(200, 90, 50, 0.15);
}

.family-card-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.family-card-right p {
  font-size: 0.88rem;
  color: var(--text-color);
  line-height: 1.45;
  margin: 0;
}

.family-card-right p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.family-cta-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.85rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.family-highlight-bar {
  margin-top: 3rem;
  border-bottom: 1px solid var(--line-color);
  padding-bottom: 0.5rem;
}

.family-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.family-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.family-bar-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.family-bar-item span {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

/* ==========================================================================
   RESPONSIVO PLANO FAMÍLIA
   ========================================================================== */
@media (max-width: 992px) {
  .plano-familia-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* No mobile, o conteúdo vem primeiro, depois imagem+CTA */
  .plano-familia-content-col {
    order: 1;
  }

  .plano-familia-img-col {
    order: 2;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .family-title {
    font-size: 2rem;
  }

  .family-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .plano-familia-section {
    padding: 3.5rem 0 0;
  }

  .plano-familia-grid {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .familia-img {
    max-height: 300px;
    object-fit: cover;
    object-position: center top;
  }

  .family-benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }

  .family-benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .benefit-icon-img {
    width: 38px;
    height: 38px;
  }

  .family-card-box {
    padding: 1.25rem;
    gap: 0.85rem;
  }

  .family-card-top-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .family-card-divider {
    height: 1px;
    width: 100%;
    align-self: auto;
  }

  .family-card-left {
    gap: 0.75rem;
  }

  .family-card-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .family-cta-btn {
    width: 100%;
    font-size: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .family-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .family-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .plano-familia-section {
    padding: 3rem 0 0;
  }

  .family-title {
    font-size: 1.6rem;
  }

  .family-tag span {
    font-size: 0.7rem;
  }

  .familia-img {
    max-height: 240px;
  }

  .family-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .family-benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .benefit-icon-img {
    width: 36px;
    height: 36px;
  }

  .family-card-box {
    padding: 1rem;
  }

  .family-card-info-text h3 {
    font-size: 1rem;
  }

  .family-card-info-text h4 {
    font-size: 0.9rem;
  }

  .family-bar-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .family-bar-item {
    justify-content: flex-start;
  }

  .differentials-card.family-bar-grid {
    padding: 1.5rem 1.25rem;
  }
}
/* ==========================================================================
   SEÇÃO DE PREÇOS E TURMAS
   ========================================================================== */

.precos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.preco-card {
  background: var(--white);
  border: 1.5px solid var(--line-color);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.preco-card-familia {
  border-color: var(--accent-color);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(200, 90, 50, 0.12);
}

.preco-familia-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.preco-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.preco-tipo-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  text-transform: uppercase;
}

.preco-tipo-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

.preco-familia-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.preco-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}

.preco-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.preco-row-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.preco-desconto-tag {
  background: rgba(200, 90, 50, 0.12);
  color: var(--accent-color);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.preco-row-value {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-color);
  white-space: nowrap;
}

.preco-suffix {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

.preco-row-destaque .preco-row-value {
  color: var(--accent-color);
}

.preco-btn {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

.turmas-wrap {
  background: var(--white);
  border: 1.5px solid var(--line-color);
  border-radius: 6px;
  padding: 2.5rem;
}

.turmas-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.turmas-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.turmas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.turma-card {
  border: 1.5px solid var(--line-color);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.turma-card-breve {
  opacity: 0.7;
}

.turma-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  color: var(--white);
}

.turma-header-a { background: var(--primary-color); }
.turma-header-b { background: var(--secondary-color); }
.turma-header-cd { background: var(--text-muted); }

.turma-header div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.turma-header strong {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
}

.turma-header span {
  font-size: 0.78rem;
  opacity: 0.85;
}

.turma-letra {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  opacity: 0.85;
  line-height: 1;
  min-width: 32px;
}

.turma-datas {
  list-style: none;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.turma-datas li {
  font-size: 0.85rem;
  color: var(--text-color);
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 0.5rem;
}

.turma-datas li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.turma-dia {
  font-weight: 600;
  color: var(--primary-color);
}

.turma-breve-text {
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.5;
}

.turma-vagas {
  display: block;
  background: var(--bg-color);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line-soft);
}

.turma-vagas-breve {
  color: var(--accent-color);
  font-weight: 700;
}

.turmas-nota {
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .precos-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .turmas-grid {
    grid-template-columns: 1fr;
  }
  .turmas-wrap {
    padding: 1.5rem 1.25rem;
  }
}


/* ==========================================================================
   SEÇÃO COMO FUNCIONA (3 steps)
   ========================================================================== */

.como-funciona-section {
  padding: 5rem 0;
}

.como-funciona-section .section-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.como-funciona-section .section-num::before,
.como-funciona-section .section-num::after {
  content: '';
  height: 1px;
  width: 50px;
  background-color: var(--accent-color);
  display: inline-block;
}

.como-funciona-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.como-funciona-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.como-funciona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

/* Cards */
.cf-card {
  background: var(--white);
  border: 1.5px solid var(--line-color);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Step badge + título em linha */
.cf-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cf-step-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-card-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cf-card-title-prefix {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.02em;
}

.cf-card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.25;
}

.cf-card-image-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.cf-card-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cf-card-text {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Info list no card 1 */
.cf-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.25rem;
  margin-top: auto;
}

.cf-info-list li {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.4;
}

.cf-info-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cf-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cf-info-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Mini família no card 3 */
.cf-familia-mini {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fdf6f2; /* Light peach */
  border: 1px solid rgba(200, 90, 50, 0.15); /* Light orange border */
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: auto; /* Push it to the bottom of the card content */
}

.cf-familia-mini-icon {
  color: var(--primary-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-familia-mini-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cf-familia-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.2;
}

.cf-familia-subtitle {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}

/* Rodapé da seção (Nova Versão) */
.cf-footer-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fdf6f2; /* Peach background */
  border: 1.5px solid rgba(200, 90, 50, 0.15); /* Light orange border */
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3.5rem;
  gap: 2rem;
}

.cf-footer-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.block-importante {
  flex: 1.3;
}

.block-descritivo {
  flex: 1.7;
  padding: 0 2rem;
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
}

.block-plano-familia {
  flex: 1.3;
  justify-content: flex-start;
}

.cf-footer-icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-footer-mic-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.cf-footer-block-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cf-footer-label-dark {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
}

.cf-footer-label-orange {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-color);
}

.cf-footer-desc-text {
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.cf-footer-desc-text strong {
  font-weight: 700;
}

.cf-footer-gift-icon {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-footer-label-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
  .como-funciona-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
  }

  .cf-card-image-wrap {
    height: auto;
    max-height: 200px;
  }

  .cf-footer-new {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .block-descritivo {
    padding: 1.5rem 0;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
  }

  .block-plano-familia {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .cf-card {
    padding: 1.5rem 1.25rem;
  }

  .cf-card-image-wrap {
    height: 150px;
    margin-bottom: 1rem;
  }

  .cf-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cf-familia-mini {
    padding: 1rem;
    gap: 0.75rem;
  }

  .cf-footer-new {
    padding: 1.5rem 1.25rem;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .cf-footer-icon-circle {
    width: 48px;
    height: 48px;
  }

  .cf-footer-mic-img {
    width: 24px;
    height: 24px;
  }

  .cf-footer-label-dark,
  .cf-footer-label-orange {
    font-size: 1rem;
  }

  .cf-footer-desc-text {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .cf-footer-gift-icon svg {
    width: 32px;
    height: 32px;
  }
}
