/* ===== 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(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 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 SECTION ===== */
.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: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.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.6), 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: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #EA7816;
  color: #fff;
  font-size: 1.125rem;
  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: 24px;
  height: 24px;
}

.hero-disclaimer {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin-top: 16px;
}

/* ===== 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: 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;
}

.info-card .text-small {
  font-size: 0.875rem;
  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;
}

.authority-header .text-gray {
  color: #6b7280;
}

/* 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;
}

.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;
}

/* ===== 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-disclaimer {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #071321;
  padding: 24px 0;
}

.footer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  background: #1fb855;
  transform: scale(1.1);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
