/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #374151;
  background: #f8fafc;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== LAYOUT ===== */
.container { max-width: 580px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ===== CORES ===== */
.text-orange { color: #EA7816; }
.text-orange-light { color: #F4A44A; }
.text-dark { color: #0B1D34; }
.text-gray { color: #6b7280; }
.text-small { font-size: 0.875rem; color: #6b7280; }

/* ===== ANIMAÇÕES ===== */
@keyframes pulse-orange-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234, 120, 22, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(234, 120, 22, 0); }
}

@keyframes pulse-whatsapp-anim {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234, 120, 22, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(234, 120, 22, 0); }
}

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

.pulse-orange { animation: pulse-orange-anim 2s infinite; }
.pulse-whatsapp { animation: pulse-whatsapp-anim 2s infinite; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.header { background: #0B1D34; padding: 16px 0; }
.logo { height: 40px; width: auto; object-fit: contain; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0B1D34 0%, #112D52 50%, #0A1929 100%);
  color: #fff;
  overflow: hidden;
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.1; }
.hero-glow--left { top: 40px; left: 20px; width: 128px; height: 128px; background: #EA7816; }
.hero-glow--right { bottom: 80px; right: 20px; width: 160px; height: 160px; background: #F4A44A; }

.hero-content { position: relative; z-index: 10; padding-top: 32px; padding-bottom: 48px; }

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .hero-title { font-size: 2.5rem; }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.15rem; }
}
.hero-subtitle strong { color: #F4A44A; }

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #0A1929;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,29,52,0.5), transparent, transparent);
}

/* Benefits */
.benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.benefit-item { display: flex; align-items: center; gap: 12px; }
.benefit-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #EA7816;
  display: flex; align-items: center; justify-content: center;
}
.benefit-item span { color: rgba(255,255,255,0.95); font-weight: 500; }

/* CTA Button */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #EA7816;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(234,120,22,0.3);
  cursor: pointer;
  border: none;
}
.btn-cta:hover {
  background: #d46a0f;
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(234,120,22,0.4);
}
.btn-cta:active { transform: scale(0.98); }
.btn-cta svg { flex-shrink: 0; width: 22px; height: 22px; }

.btn-cta--secondary {
  margin-top: 32px;
}

/* CTA Reinforcement */
.cta-reinforcement {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.cta-reinforcement span {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== SEÇÕES ===== */
.section { padding: 56px 0; }
.section--white { background: #fff; }
.section--gray { background: #f8fafc; }

.section-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1D34;
  margin-bottom: 0;
}
.section--white .section-title.text-center,
.section--gray .section-title.text-center {
  margin-bottom: 8px;
}

.section-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* Icon Box */
.icon-box {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.icon-box--orange-light { background: #FFF3E6; }

/* Info Card */
.info-card {
  background: linear-gradient(135deg, #FFF8F0, #F8FAFC);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #FADCB5;
}
.info-card p { color: #374151; line-height: 1.7; margin-bottom: 16px; }
.info-card p:last-child { margin-bottom: 0; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.step-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0B1D34;
  color: #EA7816;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.step-body { flex: 1; }
.step-title { font-weight: 700; color: #0B1D34; margin-bottom: 4px; font-size: 1rem; }
.step-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }

.step-connector {
  width: 2px;
  height: 20px;
  background: linear-gradient(to bottom, #EA7816, #FADCB5);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { display: flex; flex-direction: column; gap: 16px; }

.testimonial-card {
  background: linear-gradient(135deg, #FFF8F0, #fff);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #FDE8CD;
}

.testimonial-stars {
  color: #EA7816;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0B1D34;
  color: #EA7816;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}

.testimonial-name { font-weight: 700; color: #0B1D34; font-size: 0.9rem; }
.testimonial-location { font-size: 0.75rem; color: #6b7280; }

/* ===== AUTHORITY ===== */
.authority-header { text-align: center; margin-bottom: 32px; }
.authority-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #0B1D34;
  margin-bottom: 16px;
}
.authority-header .section-title { margin-bottom: 8px; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
}
.stat-number { font-size: 1.5rem; font-weight: 800; color: #EA7816; }
.stat-label { font-size: 0.75rem; color: #6b7280; margin-top: 4px; }

/* ===== TRUST ===== */
.trust-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.trust-item {
  display: flex;
  gap: 16px;
  background: linear-gradient(to right, #FFF8F0, transparent);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #FDE8CD;
  transition: border-color 0.3s ease;
}
.trust-item:hover { border-color: rgba(234,120,22,0.4); }
.trust-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: #0B1D34;
  display: flex; align-items: center; justify-content: center;
}
.trust-title { font-weight: 700; color: #0B1D34; margin-bottom: 4px; font-size: 1rem; }
.trust-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(234,120,22,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.faq-question span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #0B1D34;
  flex: 1;
  padding-right: 12px;
}

.faq-chevron {
  flex-shrink: 0;
  color: #EA7816;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-answer { max-height: 200px; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #0B1D34 0%, #112D52 50%, #0A1929 100%);
  padding: 56px 0;
}
.cta-icon-wrapper {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(234,120,22,0.2);
  margin-bottom: 20px;
}
.cta-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
@media (min-width: 640px) { .cta-title { font-size: 1.875rem; } }
.cta-subtitle { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.cta-subtitle strong { color: #F4A44A; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 16px;
}
.cta-phone svg { width: 16px; height: 16px; }

.cta-disclaimer {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer { background: #071321; padding: 24px 0; }
.footer p { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.footer-company {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-cnpj {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.75rem !important;
  margin-bottom: 8px;
}

/* ===== BOTÃO FLUTUANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #EA7816;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(234,120,22,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}
.whatsapp-float:hover { background: #d46a0f; transform: scale(1.1); }
.whatsapp-float:active { transform: scale(0.95); }
.whatsapp-float svg { width: 28px; height: 28px; }
