/* ===== CSS COMPLETO - LANDING PAGE PTERÍGIO ===== */
/* Revisado e otimizado para Hostinger */

/* ===== 1. VARIÁVEIS CSS CONSOLIDADAS ===== */
:root {
  /* CORES NEON - PALETA JC OFTALMOLOGIA */
  --azul-neon: #0A2E5C;
  --azul-neon-claro: #1E5BA8;
  --azul-suave: #E8F0F8;
 
  --verde-neon: #00D966;
  --verde-neon-escuro: #00A84D;
  --verde-suave: #E8F8F0;
  
  /* CORES NEUTRAS */
  --branco: #FFFFFF;
  --cinza-escuro: #1A1A1A;
  --cinza-medio: #F5F5F5;
  --cinza-claro: #E0E0E0;
  --vermelho-suave: #E63946;
  --ouro: #FFB81C;
  
  /* TIPOGRAFIA */
  --font-headline: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* ESPAÇAMENTOS */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 22px;
  --spacing-lg: 35px;
  --spacing-xl: 50px;
  --spacing-xxl: 60px;
  
  /* SOMBRAS */
  --shadow-light: 0 4px 12px rgba(10, 46, 92, 0.08);
  --shadow-medium: 0 8px 24px rgba(10, 46, 92, 0.15);
  --shadow-heavy: 0 12px 32px rgba(10, 46, 92, 0.2);
  --shadow-green: 0 8px 20px rgba(0, 217, 102, 0.3);
  
  /* TRANSIÇÕES */
  --transition: all 0.3s ease;
}

/* ===== 2. RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--cinza-escuro);
  line-height: 1.6;
  background-color: var(--branco);
}

/* ===== 3. TIPOGRAFIA GLOBAL ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.2;
  color: var(--azul-neon);
}

h1 { font-size: 44px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 20px; }

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

strong {
  font-weight: 600;
  color: var(--azul-neon);
}

a {
  color: var(--verde-neon);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--verde-neon-escuro);
}

/* ===== 4. LAYOUT GLOBAL ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  padding: var(--spacing-xxl) 0;
}

/* ===== 5. COMPONENTES REUTILIZÁVEIS ===== */

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-headline);
}

.btn--primary {
  background: var(--verde-neon);
  color: var(--branco);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  background: var(--verde-neon);
  color: var(--ouro); /* ← ADICIONE ESTA LINHA */
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 217, 102, 0.4);
}

.btn--secondary {
  background: var(--azul-neon);
  color: var(--branco);
  box-shadow: var(--shadow-medium);
}

.btn--secondary:hover {
  background: var(--azul-neon-claro);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn--large {
  padding: 18px 40px;
  font-size: 18px;
  width: 100%;
  max-width: 400px;
}

.btn--small {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* TÍTULOS DE SEÇÃO */
.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--azul-neon);
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--azul-neon-claro);
  margin-bottom: var(--spacing-xl);
  font-weight: 500;
}

/* ===== 6. TOP BAR (HEADER) ===== */
.topbar {
  background: var(--azul-neon);
  border-bottom: 3px solid var(--verde-neon);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 217, 102, 0.2);
}

.topbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.topbar__logo-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  min-width: 200px;
}

.topbar__logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.topbar__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.topbar__clinic-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--branco);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.topbar__doctor-name {
  font-size: 15px;
  color: var(--verde-neon);
  margin: 0;
  font-weight: 600;
  line-height: 1;
}

.topbar__address-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
  justify-content: center;
}

.topbar__address-section i {
  font-size: 16px;
  color: var(--verde-neon);
  min-width: 16px;
}

.topbar__address {
  font-size: 13px;
  color: var(--branco);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* ===== 7. HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, var(--azul-neon) 0%, var(--azul-neon-claro) 100%);
  color: var(--branco);
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero__content { z-index: 2; }
.hero__title {
  font-size: 42px;
  color: var(--branco);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.hero__description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.hero__cta-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-heavy);
}

/* ===== 8. PROBLEM SECTION ===== */
.problem {
  background: var(--branco);
  padding: var(--spacing-xxl) 0;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.problem-card {
  background: var(--branco);
  border: 2px solid var(--cinza-claro);
  border-radius: 12px;
  padding: var(--spacing-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--vermelho-suave);
}

.problem-card__icon { font-size: 32px; margin-bottom: var(--spacing-md); }
.problem-card__title {
  font-size: 20px;
  color: var(--azul-neon);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.problem-card__text {
  font-size: 15px;
  color: var(--cinza-escuro);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.problem-card__consequence {
  font-size: 15px;
  color: var(--vermelho-suave);
  padding: var(--spacing-md);
  background: rgba(230, 57, 70, 0.05);
  border-left: 4px solid var(--vermelho-suave);
  border-radius: 4px;
}

.problem__closing {
  background: var(--azul-suave);
  padding: var(--spacing-lg);
  border-radius: 12px;
  border-left: 4px solid var(--azul-neon);
}

.problem__closing p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.problem__closing p:last-child { margin-bottom: 0; }

/* ===== 9. SOLUTION SECTION ===== */
.solution {
  background: linear-gradient(135deg, #0D1A63 0%, #050E3C 100%);
  padding: var(--spacing-xxl) 0;
}

.solution .section-title {
  color: var(--verde-neon);
  font-size: 36px;
  margin-bottom: var(--spacing-md);
}

.solution .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
}

.solution__intro-text {
  background: transparent;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.solution__intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: rgba(255, 255, 255, 0.95);
}

.solution__intro strong {
  color: var(--verde-neon);
  font-weight: 700;
}

.solution__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.solution__pillar-card {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution__pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.pillar-header {
  margin-bottom: var(--spacing-md);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.pillar-number {
  display: inline-block;
  background: var(--azul-neon);
  color: var(--branco);
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  min-width: 150px;
}

.pillar-title {
  font-size: 18px;
  color: var(--azul-neon);
  margin: 0;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

.pillar-text {
  font-size: 14px;
  color: var(--cinza-escuro);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.solution__before-after {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.solution__before-after-title {
  font-size: 24px;
  color: var(--verde-neon);
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-after-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.before-after-item {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.solution__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: block;
}

.before-after-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(10, 46, 92, 0.9);
  color: var(--branco);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.before-after-label.before { background: rgba(230, 57, 70, 0.9); }
.before-after-label.after { background: rgba(0, 217, 102, 0.9); }

.before-after-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--verde-neon);
  font-weight: 700;
  min-width: 50px;
}

.before-after-divider i {
  animation: slideArrow 1.5s ease-in-out infinite;
}

@keyframes slideArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.solution__timeline {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg);
  border-radius: 12px;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution__timeline-title {
  font-size: 20px;
  color: var(--verde-neon);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.timeline-item {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-md);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-item__time {
  font-weight: 700;
  color: var(--azul-neon);
  font-size: 14px;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.timeline-item__desc {
  color: var(--cinza-escuro);
  font-size: 13px;
  line-height: 1.5;
}

.solution__closing {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 800px;
  margin: var(--spacing-xl) auto 0;
}

.solution__closing strong { color: var(--verde-neon); }

/* ===== 10. VALUE STACK SECTION ===== */
.value-stack {
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  padding: 80px 20px;
}

.value-stack .section-title {
  color: #0A2E5C;
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
}

.value-stack .section-subtitle {
  color: #1A1A1A;
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
}

.value-stack__content {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-left: 4px solid #00C853;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 46, 92, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 46, 92, 0.12);
  border-left-color: #0A2E5C;
}

.value-item__icon {
  font-size: 24px;
  margin-bottom: 12px;
  display: inline-block;
}

.value-item h4 {
  color: #0A2E5C;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.value-item p {
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.value-item__price {
  color: #00C853;
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
}

.value-item--bonus {
  background: rgba(0, 217, 102, 0.05);
  border-left-color: #00C853;
}

.payment-methods {
  margin-bottom: 60px;
  text-align: center;
}

.payment-methods h3 {
  color: #0A2E5C;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 700;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.payment-option {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 46, 92, 0.08);
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.payment-option i {
  font-size: 32px;
  color: #00C853;
  margin-bottom: 16px;
  display: block;
}

.payment-option h4 {
  color: #0A2E5C;
  font-size: 16px;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.payment-option p {
  color: #1A1A1A;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

.value-stack__calculation {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 20px;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(10, 46, 92, 0.1);
  max-width: 700px;
  box-sizing: border-box;
  width: 100%;
}

.value-stack__calculation h3 {
  color: #0A2E5C;
  font-size: 18px;
  text-align: center;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.calculation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 46, 92, 0.1);
  font-size: 15px;
  color: #1A1A1A;
  width: 100%;
  box-sizing: border-box;
}

.calculation-row:last-child { border-bottom: none; }

.calculation-row span:first-child {
  flex: 1;
  text-align: left;
  word-break: break-word;
  min-width: 0;
}

.calculation-row span:last-child {
  flex: 0 0 auto;
  text-align: right;
  font-weight: 600;
  color: #1A1A1A;
  white-space: nowrap;
  min-width: 120px;
}

.calculation-row--total {
  background: rgba(10, 46, 92, 0.08);
  padding: 15px 12px;
  border-radius: 6px;
  margin-top: 16px;
  border: none;
  font-weight: 700;
}

.calculation-row--total span:last-child {
  color: #0A2E5C;
  font-size: 18px;
}

.calculation-row--highlight {
  background: rgba(0, 217, 102, 0.1);
  padding: 12px;
  border-radius: 6px;
  margin-top: 8px;
  border: none;
  font-weight: 700;
}

.calculation-row--highlight span:last-child {
  color: #00C853;
  font-size: 16px;
}

.calculation-row--savings {
  background: rgba(0, 217, 102, 0.15);
  padding: 12px;
  border-radius: 6px;
  margin-top: 8px;
  border: none;
  font-weight: 700;
}

.calculation-row--savings span:last-child {
  color: #00C853;
  font-size: 15px;
}

/* ===== 11. SOCIAL PROOF SECTION ===== */
.social-proof {
  background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
  padding: 80px 0;
}

.social-proof .section-title {
  color: #0A2E5C;
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
}

.social-proof .section-subtitle {
  color: #1A1A1A;
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 20px;
  box-sizing: border-box;
}

.stat { text-align: center; }
.stat__number {
  font-size: 48px;
  font-weight: 700;
  color: #00C853;
  display: block;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 16px;
  color: #0A2E5C;
  font-weight: 600;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10, 46, 92, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 46, 92, 0.15);
}

.testimonial-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #3628d0;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #1A1A1A;
  margin: 0 0 24px 0;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 14px;
  color: #0A2E5C;
  margin-bottom: 12px;
  font-weight: 600;
}

.testimonial-card__author strong {
  color: #0A2E5C;
  font-weight: 700;
}

.testimonial-card__author span {
  color: #666;
  font-weight: 400;
}

.testimonial-card__rating { font-size: 16px; letter-spacing: 2px; }

.credentials {
  background: rgba(255, 255, 255, 0.95);
  padding: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(10, 46, 92, 0.1);
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.credentials h3 {
  color: #0A2E5C;
  font-size: 24px;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
}

.credentials__content {
  max-width: 700px;
  margin: 0 auto;
}

.credentials__text p {
  color: #0A2E5C;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.credentials__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.credentials__text li {
  color: #1A1A1A;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 0;
}

.credentials__text li:before {
  content: "✓ ";
  color: #00C853;
  font-weight: 700;
  margin-right: 8px;
}

/* ===== 12. FAQ SECTION ===== */
.faq {
  background: var(--branco);
  padding: var(--spacing-xxl) 0;
}

.faq__content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-lg);
  border: 2px solid var(--cinza-claro);
  border-radius: 8px;
  overflow: hidden;
  background: var(--branco);
}

.faq-item__question {
  width: 100%;
  padding: var(--spacing-lg);
  background: var(--azul-suave);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--azul-neon);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: var(--font-headline);
}

.faq-item__question:hover {
  background: var(--azul-neon-claro);
  color: var(--branco);
}

.faq-item__question i { transition: var(--transition); }
.faq-item.active .faq-item__question i { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-item__answer { padding: var(--spacing-lg); }

.faq-item__answer p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.faq-item__answer ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.faq-item__answer li {
  font-size: 14px;
  margin-bottom: var(--spacing-sm);
}

/* ===== 13. GUARANTEE SECTION ===== */
.guarantee {
  background: linear-gradient(135deg, #111753FF 0%, #6865b6 100%);
  padding: 80px 20px;
}

.guarantee .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.guarantee__content { margin-bottom: 60px; }

/* TÍTULO EM VERDE NEON */
.guarantee__title {
  color: #48A111;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}

.guarantee__text {
  color: var(--branco);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10, 46, 92, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 46, 92, 0.12);
}

.guarantee-item__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: #00C853;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
}

.guarantee-item__content h3 {
  color: var(--azul-neon);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.guarantee-item__content p {
  color: var(--cinza-escuro);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.guarantee__closing-box {
  background-color: var(--azul-neon);
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(10, 46, 92, 0.2);
  text-align: center;
  max-width: 500px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.guarantee__closing-text {
  color: var(--branco);
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* ===== 14. URGENCY SECTION ===== */
.urgency {
  background: linear-gradient(135deg, #F0FFF8FF 0%, #F5F8B4FF 100%);
  padding: 80px 20px;
}

.urgency .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.urgency__title {
  color: #DC143C;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.3;
}

.urgency__text {
  color: var(--cinza-escuro);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.urgency__cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 60px auto 40px;
  padding: 0 20px;
  box-sizing: border-box;
}

.urgency__status {
  background: var(--azul-suave);
  padding: 40px;
  border-radius: 12px;
  border-left: 7px solid #FF6B35;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.urgency__status:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.urgency__status h3 {
  color: #FF6B35;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.urgency__status p {
  color: var(--cinza-escuro);
  font-size: 15px;
  line-height: 1.8;
  margin: 12px 0;
}

.urgency__warning {
  background: var(--azul-suave);
  padding: 40px;
  border-radius: 12px;
  border-left: 6px solid #DC143C;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.urgency__warning:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.urgency__warning h3 {
  color: #DC143C;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.urgency__warning p {
  color: var(--cinza-escuro);
  font-size: 15px;
  line-height: 1.8;
  margin: 12px 0;
}

.urgency__closing {
  color: var(--cinza-escuro);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin: 40px auto 0;
  max-width: 800px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ===== 15. FINAL CTA SECTION ===== */
.final-cta {
  background: var(--azul-neon-claro);
  color: var(--branco);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.final-cta__title {
  font-size: 36px;
  color: var(--branco);
  margin-bottom: var(--spacing-lg);
}

.final-cta__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: rgba(12, 242, 217, 0.95);
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
  align-items: center;
}

.final-cta__buttons .btn--primary {
  background: var(--branco);
  color: var(--azul-neon);
  font-weight: 700;
}

.final-cta__buttons .btn--primary:hover {
  background: #F0F0F0;
  color: var(--azul-neon);
  /* GARANTIR QUE O TEXTO NÃO DESAPAREÇA */
}

.final-cta__reminder {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #071960;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-section-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 105px;
    height: 75px;
    border-radius: 12px;
    object-fit: cover;
    background: white;
    padding: 2px;
}

.footer-link-whatsapp {
    color: #25d366 !important;
    font-weight: 600;
}

.footer-link-whatsapp:hover {
    color: #34d399 !important;
}

.footer-link-maps {
    color: var(--primary-light) !important;
}

.footer-link-maps:hover {
    color: #60a5fa !important;
}

/* Social Media Bar */
.footer-social {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-social-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social-link.facebook { background: #1877f2; }
.footer-social-link.facebook:hover { background: #166fe5; }

.footer-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-social-link.instagram:hover { filter: brightness(1.1); }

.footer-social-link.googlemaps { background: #ea4335; }
.footer-social-link.googlemaps:hover { background: #d33b28; }

.footer-social-link.whatsapp { background: #25d366; }
.footer-social-link.whatsapp:hover { background: #128c7e; }

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsivo Footer */
@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ===== 17. ÍCONE WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--verde-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-green);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: var(--verde-neon-escuro);
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 217, 102, 0.5);
}

.whatsapp-float i {
  font-size: 32px;
  color: var(--branco);
}

/* ===== 18. RESPONSIVIDADE ===== */

/* TABLET (768px - 1024px) */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  section { padding: var(--spacing-xl) 0; }
  .hero .container { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .btn--large { max-width: 100%; }
}

/* MOBILE (<768px) */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --spacing-xxl: 40px;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  p { font-size: 16px; }
  section { padding: var(--spacing-xl) 0; }
  .container { padding: 0 var(--spacing-md); }

  .hero { padding: 60px 0; min-height: auto; }
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 18px; }
  .hero__description { font-size: 16px; }

  .problem__grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .faq-item__question { padding: var(--spacing-md); font-size: 14px; }

  .final-cta__buttons { gap: var(--spacing-md); }
  .btn--large { padding: 16px 24px; font-size: 16px; max-width: 100%; }

  .footer__content { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .footer__section h4 { font-size: 14px; }
  .footer__section p { font-size: 12px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
  .whatsapp-float i { font-size: 28px; }

  .urgency__cards-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .guarantee__closing-box { max-width: 450px; }
}

/* EXTRA SMALL MOBILE (<480px) */
@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; }
  .btn { padding: 14px 20px; font-size: 14px; }
  .hero__title { font-size: 24px; }
  .hero__subtitle { font-size: 16px; }
}

/* ===== 19. ANIMAÇÕES ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in { animation: fadeIn 0.8s ease-in-out forwards; }
.hero__content { animation: slideInLeft 0.8s ease-in-out; }
.hero__image { animation: slideInRight 0.8s ease-in-out; }

/* ===== 20. UTILIDADES ===== */
.text-center { text-align: center; }
.text-white { color: var(--branco); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.py-xl { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
/* Link de telefone no footer (WhatsApp) */
.phone-link {
  color: var(--verde-neon);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.phone-link:hover {
  color: var(--azul-neon-claro);
}
/* ===== LINK DE ENDEREÇO NA TOPBAR ===== */

.topbar__address-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
  justify-content: center;
}

.topbar__address-section i {
  font-size: 16px;
  color: var(--verde-neon);
  min-width: 16px;
}

/* Link de endereço responsivo */
.topbar__address-link {
  font-size: 13px;
  color: var(--branco);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.topbar__address-link:hover {
  color: var(--ouro); /* Muda para OURO no hover */
  text-decoration: underline;
}

/* Responsividade */
@media (max-width: 1024px) {
  .topbar__address-link {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .topbar__address-section {
    order: 3;
    flex: 1 0 100%;
    justify-content: flex-start;
  }

  .topbar__address-link {
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .topbar__address-link {
    font-size: 10px;
    line-height: 1.2;
  }
}