/* ========================================
   RESET E VARIÁVEIS GLOBAIS
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #FF2D2D;
  --secondary-color: #FF6B35;
  --dark-color: #1a1a1a;
  --light-color: #f5f5f5;
  --text-color: #333;
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

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

/* ========================================
   URGENCY BAR
   ======================================== */
.urgency-top-bar {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  animation: pulse 2s infinite;
}

.urgency-top-bar span {
  font-weight: 700;
  margin-left: 5px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* ========================================
   HEADER
   ======================================== */
.header {
  background: white;
  padding: 0px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 100px;
  width: auto;
}

.btn-phone {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-phone:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 45, 45, 0.3);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
  background: var(--light-color);
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 0.8s ease;
}

.badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 45, 45, 0.1);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #333;
}

.benefit i {
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-form {
  animation: slideInRight 0.8s ease;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.form-subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.1);
}

.btn-primary {
  width: 100%;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 45, 45, 0.3);
}

.btn-primary-large {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-large:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 45, 45, 0.3);
}

.btn-secondary-large {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 13px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-secondary-large:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.form-guarantee i {
  color: var(--primary-color);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   PROBLEM/SOLUTION SECTION
   ======================================== */
.problem-solution {
  padding: 60px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-header h2 .highlight {
  color: var(--primary-color);
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.comparison-item {
  padding: 30px;
  border-radius: var(--border-radius);
  background: var(--light-color);
}

.comparison-item.problems {
  border-left: 4px solid #ff6b6b;
}

.comparison-item.solutions {
  border-left: 4px solid var(--primary-color);
}

.comparison-item h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-item i {
  font-size: 24px;
}

.comparison-item.problems i {
  color: #ff6b6b;
}

.comparison-item.solutions i {
  color: var(--primary-color);
}

.comparison-item ul {
  list-style: none;
}

.comparison-item li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  color: #555;
}

.comparison-item li:before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.comparison-item.problems li:before {
  color: #ff6b6b;
}

.comparison-item.solutions li:before {
  color: var(--primary-color);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits {
  padding: 60px 0;
  background: var(--light-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 60px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid #eee;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 45, 45, 0.1);
}

.service-card i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: 60px 0;
  background: var(--light-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 14px;
  margin-bottom: 3px;
  color: var(--dark-color);
}

.author-info span {
  font-size: 12px;
  color: #999;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: 60px 0;
  background: white;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: var(--light-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-question h3 {
  font-size: 16px;
  color: var(--dark-color);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.open .faq-question {
  background: rgba(255, 45, 45, 0.05);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

.faq-answer p {
  padding: 20px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.offer-box {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.offer-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.offer-box p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
}

.offer-conditions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.offer-condition {
  background: var(--light-color);
  padding: 12px;
  border-radius: var(--border-radius);
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.offer-condition i {
  color: var(--primary-color);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark-color), #333);
  color: white;
}

.cta-content {
  text-align: center;
}

.cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.urgency-banner {
  background: rgba(255, 45, 45, 0.2);
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.urgency-banner i {
  font-size: 20px;
}

.guarantees {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.guarantee i {
  font-size: 20px;
  color: var(--primary-color);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.footer-section p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-logo img {
  max-height: 40px;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #999;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  z-index: 99;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-logo {
  text-align: center;
  margin-bottom: 20px;
}

.modal-logo img {
  max-height: 50px;
}

.modal-step-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  transition: var(--transition);
}

.step-dot.active {
  background: var(--primary-color);
}

.modal-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark-color);
  text-align: center;
}

.modal-subtitle {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
}

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

.modal-form .form-group {
  margin-bottom: 15px;
}

.modal-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.modal-btn-submit {
  width: 100%;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-btn-submit:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.modal-privacy {
  text-align: center;
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.modal-privacy i {
  color: var(--primary-color);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

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

  .comparison {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .offer-conditions {
    grid-template-columns: 1fr;
  }

  .guarantees {
    flex-direction: column;
    gap: 15px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  .modal-box {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 22px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .cta-text h2 {
    font-size: 28px;
  }

  .urgency-top-bar {
    font-size: 12px;
    padding: 10px 15px;
  }

  .btn-phone {
    padding: 8px 15px;
    font-size: 12px;
  }

  .form-container {
    padding: 20px;
  }

  .badges {
    gap: 5px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 12px;
  }

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

  .benefit {
    font-size: 13px;
  }

  .comparison-item {
    padding: 20px;
  }

  .comparison-item li {
    font-size: 13px;
    padding: 8px 0;
  }

  .service-card,
  .benefit-card,
  .testimonial-card {
    padding: 20px;
  }

  .service-card h3,
  .benefit-card h3 {
    font-size: 16px;
  }

  .service-card p,
  .benefit-card p {
    font-size: 13px;
  }

  .faq-question h3 {
    font-size: 14px;
  }

  .faq-answer p {
    padding: 15px;
    font-size: 13px;
  }

  .offer-box {
    padding: 25px;
  }

  .offer-box h2 {
    font-size: 24px;
  }

  .modal-box {
    padding: 20px;
  }

  .modal-box h3 {
    font-size: 18px;
  }
}
