/* ============================================
   RESET E VARIÁVEIS
   ============================================ */

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

:root {
  --color-primary: #0F172A;
  --color-secondary: #F8FAFC;
  --color-highlight: #2563EB;
  --color-cta: #25D366;
  --color-text: #1E293B;
  --color-text-light: #64748B;
  --color-border: #E2E8F0;
  --color-hover: #1F2937;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --spacing-unit: 8px;
  --spacing-sm: calc(var(--spacing-unit) * 2);
  --spacing-md: calc(var(--spacing-unit) * 3);
  --spacing-lg: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #FFFFFF;
  line-height: 1.6;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* ============================================
   TIPOGRAFIA GERAL
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.5rem;
}

p {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-highlight);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn-primary {
  background-color: var(--color-cta);
  color: white;
}

.btn-primary:hover {
  background-color: #1da853;
}

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

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: white;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--color-cta);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.btn-whatsapp-header:hover {
  background-color: #1da853;
  transform: scale(1.05);
}

.btn-cta-final {
  font-size: 1.2rem;
  padding: var(--spacing-lg) calc(var(--spacing-lg) * 1.5);
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
}

.logo h1 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo h1 img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 15px;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav a:hover {
  color: var(--color-highlight);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-highlight);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding-top: 180px;
  padding-bottom: var(--spacing-2xl);
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;

}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 540px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
  min-height: auto;
}

.hero-text {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: auto;
}

.hero-image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
  flex-wrap: wrap;

}


.hero-cta .btn {
  flex: 1;
  min-width: 200px;
}

.trust-badges {
  display: grid;
  gap: var(--spacing-md);
}

.badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: var(--color-text);
  font-weight: 500;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.badge:nth-child(1) { animation-delay: 0.2s; }
.badge:nth-child(2) { animation-delay: 0.4s; }
.badge:nth-child(3) { animation-delay: 0.6s; }
.badge:nth-child(4) { animation-delay: 0.8s; }
.badge:nth-child(5) { animation-delay: 1s; }

.badge svg {
  color: var(--color-cta);
  flex-shrink: 0;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  max-height: 520px;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #F59E0B;
  letter-spacing: 0.02em;
}

.hero-stars span {
  color: var(--color-highlight);
  font-weight: 600;
}

.trust-badges {
  display: grid;
  gap: var(--spacing-sm);
}

.badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  color: var(--color-text);
  font-weight: 500;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.85);
  width: fit-content;
  max-width: 100%;
}

.badge:nth-child(1) { animation-delay: 0.2s; }
.badge:nth-child(2) { animation-delay: 0.4s; }
.badge:nth-child(3) { animation-delay: 0.6s; }
.badge:nth-child(4) { animation-delay: 0.8s; }
.badge:nth-child(5) { animation-delay: 1s; }

.badge svg {
  color: var(--color-cta);
  flex-shrink: 0;
}

.credibility-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.credibility-pill {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.credibility-pill strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.credibility-pill span {
  color: var(--color-text-light);
  font-size: 0.8rem;
  line-height: 1.3;
}

.placeholder-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SEÇÕES GERAIS
   ============================================ */

section {
  padding: var(--spacing-2xl) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--spacing-xl);
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  color: var(--color-highlight);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-eyebrow.light {
  color: rgba(255,255,255,0.75);
}

section.diferenciais {
  background-color: var(--color-secondary);
}

.educacao {
  background-color: #F8FAFC;
}

.educacao-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: var(--spacing-xl);
  align-items: center;
}

.educacao-text {
  max-width: 640px;
}

.educacao-text h2 {
  font-size: 2.75rem;
  line-height: 1.05;
  margin-bottom: var(--spacing-md);
}

.educacao-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text);
}

.section-subtitle {
  margin-bottom: var(--spacing-lg);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  max-width: 560px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

section.como-funciona {
  background-color: var(--color-secondary);
}

section.beneficios {
  background-color: #FFFFFF;
}

section.faq {
  background-color: var(--color-secondary);
}

section.cta-final {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1F2937 100%);
  color: white;
  padding: var(--spacing-2xl) 0;
}

.cta-final-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  box-shadow: 0 20px 60px rgba(2, 8, 23, 0.18);
}

section.cta-final h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

section.cta-final p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.cta-benefits span {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.92rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
}

.btn-cta-secondary {
  background: white;
  color: var(--color-primary);
  border: none;
}

.btn-cta-secondary:hover {
  background: #F8FAFC;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
}

/* ============================================
   ANTES E DEPOIS
   ============================================ */

.antes-depois {
  background-color: white;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
  color: var(--color-primary);
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-xl);
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.comparison-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-before {
  position: absolute;
  top: 0;
  left: 0;
}

.img-after {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}

.comparison-slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--color-cta);
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.comparison-slider-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: var(--color-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  animation: pulsArrows 2s ease-in-out infinite;
}

.benefit-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--spacing-lg);
}

.benefit-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1.2rem;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-highlight);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--color-primary);
}

.educacao-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.educacao-pills span {
  padding: 0.6rem 0.9rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-highlight);
}

@keyframes pulsArrows {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
}

.comparison-label {
  position: absolute;
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 4px;
  z-index: 5;
}

.comparison-label.before {
  top: var(--spacing-md);
  left: var(--spacing-md);
}

.comparison-label.after {
  top: var(--spacing-md);
  right: var(--spacing-md);
}

/* ============================================
   SERVIÇOS
   ============================================ */

.servicos {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  background-color: var(--color-secondary);
  padding: var(--spacing-xl);
  border-radius: 18px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-highlight);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--color-primary);
}

.service-card h3 {
  margin-bottom: var(--spacing-md);
}

.service-card p {
  font-size: 0.95rem;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.diferencial-block {
  background-color: white;
  padding: var(--spacing-xl);
  border-radius: 18px;
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.diferencial-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.diferencial-block h4 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.diferencial-block h4 img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  align-items: stretch;
}

.step {
  background-color: white;
  padding: var(--spacing-xl);
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-highlight);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.step h3 {
  margin-bottom: var(--spacing-md);
}

.step p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-highlight);
}

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

/* ============================================
   BENEFÍCIOS
   ============================================ */

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
}

.beneficio-item {
  text-align: center;
  padding: var(--spacing-lg);
  border-radius: 12px;
  transition: var(--transition);
}

.beneficio-item:hover {
  background-color: var(--color-secondary);
}

.beneficio-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  display: block;
}

.beneficio-item h4 {
  margin-bottom: var(--spacing-md);
}

/* ============================================
   AVALIAÇÕES GOOGLE
   ============================================ */

/* Rating Showcase */
.avaliacoes-secao {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.rating-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-xl);
  max-width: 900px;
  margin: 0 auto var(--spacing-xl);
  align-items: center;
}

.rating-badge {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 2px solid var(--color-border);
  border-radius: 24px;
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.rating-badge:hover {
  transform: translateY(-4px);
  border-color: var(--color-highlight);
}

.rating-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
  color: #FBBF24;
  font-size: 1.6rem;
}

.rating-count {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.rating-text {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: 24px;
  padding: var(--spacing-lg);
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.google-badge:hover {
  border-color: #4285F4;
  box-shadow: 0 14px 34px rgba(66, 133, 244, 0.12);
  transform: translateY(-4px);
}

.google-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-xl);
}

.review-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: var(--spacing-xl);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.review-card:hover {
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
  border-color: var(--color-highlight);
  transform: translateY(-8px);
}

.review-stars-card {
  color: #FBBF24;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.review-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 var(--spacing-md) 0;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.review-author {
  font-weight: 700;
  color: var(--color-primary);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes starPulse {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   REGIÕES ATENDIDAS
   ============================================ */

.regioes {
  background-color: white;
}

.regioes-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
}

.regiao-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background-color: var(--color-secondary);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  transition: var(--transition);
}

.regiao-item:hover {
  background-color: var(--color-highlight);
  color: white;
  transform: scale(1.05);
}

.regiao-item svg {
  color: var(--color-highlight);
}

.regiao-item:hover svg {
  color: white;
}

/* ============================================
   FAQ
   ============================================ */

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-lg);
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  background-color: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-secondary);
}

.faq-question svg {
  transition: var(--transition-fast);
}

.faq-question.active svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  animation: slideDown 0.3s ease;
}

.faq-answer p {
  margin-bottom: 0;
}

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

.footer {
  background-color: var(--color-primary);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
  color: white;
  margin-bottom: var(--spacing-md);
}

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

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  color: var(--color-cta);
}

.footer-section a svg {
  vertical-align: middle;
  margin-right: 8px;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--color-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ============================================
   CTA FINAL
   ============================================ */

.cta-final .container {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-lg);
}

.btn-cta-final {
  background-color: var(--color-cta);
  color: white;
}

.btn-cta-final:hover {
  background-color: #1da853;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.8);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
  
  .hero-headline {
    font-size: 2.2rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .nav ul {
    gap: var(--spacing-md);
  }

  .credibility-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: calc(var(--spacing-unit) * 3);
    --spacing-xl: calc(var(--spacing-unit) * 4);
    --spacing-2xl: calc(var(--spacing-unit) * 5);
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    /* padding-top: 10px; */
    padding-bottom: var(--spacing-xl);
    min-height: auto;
  }
  
  .hero-headline {
    font-size: 1.8rem;
  }
  
  .hero-subheadline {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    min-width: auto;
  }

  .credibility-bar,
  .rating-showcase {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 0.7rem;
  }

  .badge {
    width: 100%;
    border-radius: 14px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }
  
  .nav ul {
    display: none;
  }
  
  .header-content {
    gap: var(--spacing-md);
  }
  
  .hero-image {
    min-height: 300px;
  }

  .educacao-content {
    grid-template-columns: 1fr;
  }

  .educacao-text,
  .video-wrapper {
    width: 100%;
  }

  .educacao-text {
    order: 1;
  }

  .video-wrapper {
    order: 2;
    margin-top: var(--spacing-lg);
  }

  .educacao-tag {
  background-color: #fee2e2;
  color: #dc2626;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.educacao-text h2 {
  font-size: 2.2rem;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.educacao-description {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.educacao-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 4px solid #2563eb; /* Cor do seu tema */
  padding-left: 16px;
}

.highlight-item {
  font-size: 0.95rem;
  color: #334155;
}

.highlight-item strong {
  color: #0f172a;
}

  
  .services-grid,
  .diferenciais-grid,
  .gallery-grid,
  .beneficios-grid,
  .reviews-grid,
  .regioes-list {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-headline {
    font-size: 1.5rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: var(--spacing-md) var(--spacing-lg);
  }
  
  .comparison-slider {
    height: 300px;
  }

  .btn,
  .btn-cta-final,
  .btn-cta-secondary {
    width: 100%;
  }

  .btn.btn-whatsapp-icon img,
  .btn.btn-cta-final img {
    display: inline-block;
    margin-right: 0.75rem;
  }

  .btn.btn-secondary img {
    display: none;
  }

  .hero-content,
  .educacao-content {
    gap: 1.5rem;
  }
}
