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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(180deg, #7f1d1d 0%, #991b1b 50%, #000000 100%);
  min-height: 100vh;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Fixo */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #eab308;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-header {
  background: #16a34a;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-header:hover {
  background: #15803d;
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  padding: 80px 0 40px;
  text-align: center;
}

.alert-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.hero-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: #fbbf24;
}

.highlight-yellow {
  color: #fbbf24;
  font-weight: 700;
}

.hero-box {
  background: #eab308;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 20px;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-primary {
  width: 100%;
  background: #16a34a;
  color: white;
  border: none;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.pulse {
  animation: pulse 2s infinite;
}

.whatsapp-box {
  background: #16a34a;
  color: white;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
}

/* Seção Emocional Melhorada */
.emotional-section {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.5);
}

.emotional-card {
  background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
  border: 3px solid #fbbf24;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
}

.emotional-title {
  font-size: 22px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 25px;
}

.emotional-content {
  margin-bottom: 25px;
}

.emotional-item {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: left;
}

.emotional-item .emoji {
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.emotional-item p {
  font-size: 16px;
  line-height: 1.4;
}

.solution-box {
  background: rgba(22, 163, 74, 0.2);
  border: 2px solid #16a34a;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}

.solution-box h4 {
  color: #fbbf24;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-box p {
  font-size: 16px;
  line-height: 1.5;
}

.btn-secondary {
  width: 100%;
  background: #dc2626;
  color: white;
  border: none;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Depoimentos */
.testimonials {
  padding: 50px 0;
  background: rgba(255, 255, 255, 0.05);
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 30px;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
}

.stars {
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(251, 191, 36, 0.3);
  padding-top: 15px;
  font-size: 14px;
}

.testimonial-author strong {
  color: #fbbf24;
}

.social-proof {
  display: flex;
  justify-content: space-around;
  background: rgba(22, 163, 74, 0.2);
  border-radius: 15px;
  padding: 25px 10px;
}

.proof-item {
  text-align: center;
}

.proof-number {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: #fbbf24;
}

.proof-text {
  font-size: 12px;
  font-weight: 600;
}

/* Benefícios */
.benefits {
  padding: 50px 0;
}

.benefits-grid {
  display: grid;
  gap: 20px;
}

.benefit-card {
  display: flex;
  align-items: center;
  background: rgba(22, 163, 74, 0.2);
  border-radius: 15px;
  padding: 20px;
}

.benefit-icon {
  font-size: 32px;
  margin-right: 20px;
  flex-shrink: 0;
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* Formulário */
.form-section {
  padding: 50px 0;
  background: #eab308;
}

.form-card {
  background: white;
  color: #000;
  border-radius: 15px;
  padding: 30px 25px;
}

.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #991b1b;
  margin-bottom: 10px;
}

.form-subtitle {
  text-align: center;
  color: #666;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 3px solid #dc2626;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #991b1b;
}

.btn-form {
  width: 100%;
  background: #dc2626;
  color: white;
  border: none;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.btn-form:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.form-footer {
  text-align: center;
  border-top: 2px solid #eee;
  padding-top: 20px;
}

.form-footer p {
  color: #666;
  margin-bottom: 15px;
}

.btn-whatsapp {
  width: 100%;
  background: #16a34a;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #15803d;
}

/* Urgência Final */
.urgency-final {
  padding: 50px 0;
  background: #991b1b;
}

.urgency-card {
  background: #eab308;
  color: #000;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
}

.urgency-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}

.urgency-card p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.urgency-highlight {
  display: block;
  color: #991b1b;
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
}

.btn-urgency {
  width: 100%;
  background: #dc2626;
  color: white;
  border: none;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-urgency:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 30px 0;
  background: #000;
  text-align: center;
  font-size: 14px;
  color: #999;
}

.footer p {
  margin-bottom: 10px;
}

.footer-contact {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}

.footer-whatsapp {
  color: #fbbf24 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

.footer-hours {
  font-size: 12px !important;
  color: #666 !important;
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animações */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsividade */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-box {
    font-size: 18px;
    padding: 15px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .emotional-title {
    font-size: 20px;
  }

  .emotional-item {
    padding: 12px;
  }

  .emotional-item p {
    font-size: 15px;
  }

  .form-card {
    padding: 25px 20px;
  }

  .social-proof {
    padding: 20px 5px;
  }

  .proof-number {
    font-size: 20px;
  }

  .proof-text {
    font-size: 11px;
  }
}

/* Melhorias de Performance */
.btn-primary,
.btn-secondary,
.btn-form,
.btn-urgency,
.btn-whatsapp,
.btn-header {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}
