/* ==========================================================================
   DESIGN SYSTEM — LANDING PAGE NEUROPSICOPEDAGOGA (CAMILA MIRANDA)
   Foco: Crianças de 3 a 12 anos (Pedagoga, Neuropsicopedagoga, Musicalização)
   Autor: @denalth — Singularidade Técnica
   ========================================================================== */

:root {
  /* Cores Principais */
  --primary: #1e293b;            /* Slate Escuro - Autoridade e elegância */
  --primary-accent: #2563eb;     /* Royal Blue - Confiança */
  --primary-hover: #1d4ed8;
  
  --secondary: #0d9488;          /* Teal / Sálvia - Saúde e equilíbrio */
  --secondary-light: #ccfbf1;
  --secondary-hover: #0f766e;
  
  --accent: #f59e0b;             /* Warm Amber - Afeto e lúdico */
  --accent-light: #fef3c7;
  
  /* Cores de Fundo & Superfícies */
  --bg-main: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --surface-glass: rgba(255, 255, 255, 0.92);
  
  /* Tipografia & Texto */
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-white: #ffffff;
  
  /* Bordas & Sombras */
  --border: #e2e8f0;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 25px rgba(13, 148, 136, 0.25);
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-padding { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background-color: var(--secondary-light);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title span { color: var(--secondary); }
.section-subtitle { font-size: 1.125rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .section-title { font-size: 1.75rem; }
  .section-subtitle { font-size: 1rem; }
}

/* BOTÕES & CTAS GERAIS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary { background-color: var(--secondary); color: #ffffff; }
.btn-primary:hover { background-color: var(--secondary-hover); transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-whatsapp { background-color: #25d366; color: #ffffff; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background-color: #1eb956; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }

.btn-accent { background-color: #f59e0b; color: #ffffff; box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35); }
.btn-accent:hover { background-color: #d97706; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45); }

.btn-outline { background-color: transparent; border-color: var(--border); color: var(--primary); }
.btn-outline:hover { border-color: var(--secondary); color: var(--secondary); background-color: var(--surface); transform: translateY(-2px); }

/* NAVBAR — CABEÇALHO MODERNO, COMPACTO E ELEGANTE */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary);
  white-space: nowrap;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
  border: 2px solid var(--secondary-light);
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-fast);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  transition: var(--transition-normal);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, #d97706, #b45309);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background-color: var(--surface);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.4rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
  }
  .nav-menu.active { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-toggle { display: block; }
  .nav-cta-btn { width: 100%; padding: 0.85rem; font-size: 1rem; }
}

/* HERO SECTION REDESENHADA COM BLOCO DE EMPATIA */
.hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 45%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

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

.hero-title mark {
  background: transparent;
  color: var(--secondary);
  position: relative;
}

.hero-empathy-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.9));
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.25rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.empathy-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fce7f3;
  color: #ec4899;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.hero-ctas { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 3rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item h3 { font-family: var(--font-heading); font-size: 1.85rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.25rem; }
.stat-item p { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.hero-card-wrapper { position: relative; }

.hero-card-main {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-card-img-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.hero-card-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-card-floating {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: float 4s ease-in-out infinite;
}

.floating-icon {
  width: 42px;
  height: 42px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.floating-text h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.floating-text p { font-size: 0.75rem; color: var(--text-muted); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-card-wrapper { max-width: 500px; margin: 0 auto; }
}

/* CARDS DE MASCOTE DA MARCA */
.brand-mascot-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background-color: var(--surface);
  transition: var(--transition-normal);
}

.brand-mascot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.brand-mascot-img { width: 100%; height: 260px; object-fit: cover; }
.brand-mascot-caption { padding: 1.25rem; text-align: center; }
.brand-mascot-caption h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary); font-weight: 700; }
.brand-mascot-caption p { font-size: 0.85rem; color: var(--text-muted); }

/* GUIA GRATUITO / LEAD MAGNET BOX */
.lead-magnet-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-magnet-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.lead-title { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.lead-desc { font-size: 1.05rem; color: #94a3b8; margin-bottom: 1.75rem; line-height: 1.6; }

.lead-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.lead-bullets li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: #e2e8f0; font-weight: 500; }
.lead-bullets li i { color: #10b981; }

.lead-img-preview img { border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); border: 3px solid rgba(255, 255, 255, 0.2); }

@media (max-width: 992px) {
  .lead-magnet-box { padding: 2.25rem; }
  .lead-magnet-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* CARDS & SINAIS DE ALERTA */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.signal-card {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--secondary-light); }
.signal-icon { width: 54px; height: 54px; border-radius: var(--radius-md); background-color: var(--secondary-light); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.signal-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.signal-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.signal-list { list-style: none; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.signal-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-main); font-weight: 500; }
.signal-list li i { color: var(--secondary); font-size: 0.75rem; }

/* SEÇÃO DE SERVIÇOS E FAIXAS ETÁRIAS (GRIDS SIMÉTRICOS) */
.services-section { background-color: var(--surface-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
  justify-content: center;
}

.service-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary-accent));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-icon { font-size: 2.25rem; color: var(--secondary); margin-bottom: 1.25rem; }
.service-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--primary); margin-bottom: 0.85rem; }
.service-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }
.service-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; color: var(--secondary); transition: var(--transition-fast); }
.service-link:hover { gap: 0.75rem; color: var(--secondary-hover); }

/* METODOLOGIA / TIMELINE */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background-color: var(--border); transform: translateX(-50%); }
.timeline-item { display: flex; justify-content: flex-end; padding-bottom: 3rem; position: relative; width: 50%; }
.timeline-item:nth-child(even) { align-self: flex-end; justify-content: flex-start; margin-left: 50%; }

.timeline-dot {
  position: absolute;
  top: 0;
  right: -14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--secondary);
  border: 4px solid var(--surface);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--secondary-light);
}

.timeline-item:nth-child(even) .timeline-dot { left: -16px; right: auto; }
.timeline-content { background-color: var(--surface); padding: 1.75rem; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: var(--shadow-sm); width: 90%; }
.timeline-step { font-family: var(--font-heading); font-weight: 800; font-size: 0.8rem; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.timeline-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.timeline-desc { font-size: 0.9rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { width: 100%; margin-left: 0; padding-left: 50px; justify-content: flex-start; }
  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 5px; right: auto; }
  .timeline-content { width: 100%; }
}

/* SOBRE A PROFISSIONAL */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image-card { background: linear-gradient(135deg, var(--primary-accent), var(--secondary)); padding: 8px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.about-img-placeholder {
  width: 100%;
  height: 420px;
  background-color: #e2e8f0;
  border-radius: calc(var(--radius-lg) - 6px);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge-item { background-color: var(--surface); border: 1px solid var(--border); padding: 0.5rem 1rem; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: var(--shadow-sm); }
.badge-item i { color: var(--secondary); }

.about-content h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.about-role { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); font-size: 1.05rem; margin-bottom: 1.5rem; }
.about-text { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.about-bullets { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-bottom: 2rem; }
.about-bullets li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.95rem; color: var(--primary); }
.about-bullets li i { color: var(--secondary); }

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* FAQ */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: var(--surface);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  gap: 1rem;
}

.faq-toggle-icon {
  font-size: 1.25rem;
  color: var(--secondary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
  display: block;
  border-top-color: var(--border);
  padding-top: 1rem;
}

/* CONTATO & SÁBADOS */
.contact-card-box {
  background: linear-gradient(135deg, var(--primary), #0f172a);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p { color: #94a3b8; font-size: 1.05rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item { display: flex; align-items: center; gap: 1rem; }
.detail-icon { width: 46px; height: 46px; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--secondary-light); }
.detail-text h4 { font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: #94a3b8; }
.detail-text p { margin: 0; font-size: 1rem; color: #ffffff; font-weight: 600; }

.contact-form-side {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-side h4 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: #cbd5e1; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: var(--radius-sm); color: #ffffff; outline: none; transition: var(--transition-fast); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--secondary); background: rgba(255, 255, 255, 0.15); }
.form-select option { background-color: var(--primary); color: #ffffff; }

@media (max-width: 992px) {
  .contact-card-box { padding: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* BOTÃO FLUTUANTE WHATSAPP */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
  animation: pulseGlow 3s infinite;
}

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

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* FOOTER */
.footer { background-color: #0b1329; color: #94a3b8; padding-top: 4rem; padding-bottom: 2rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { font-family: var(--font-heading); color: #ffffff; font-size: 1.1rem; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a:hover { color: var(--secondary-light); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ANIMAÇÃO REVELAÇÃO */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
