@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
:root {
  --primary-color: #da0000;
  --secondary-color: #ff0000;
  --text-color: #333;
  --bg-color: #fff;
  --dark-bg-color: #1a1a1a;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img {
  height: 30px;
}
.header-cta {
  display: none;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 6rem 0;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero .main-headline {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.hero .sub-headline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #eee;
}
.hero-cta {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

.social-proof {
  padding: 2rem 0;
}
.social-proof p {
  font-size: 1rem;
}
.social-proof .testimonials {
  flex-direction: column;
  gap: 1rem;
}

.plans-section {
  padding: 4rem 0;
}
.plans-section h2 {
  font-size: 2rem;
}
.plans-section .plans {
  flex-direction: column;
  align-items: center;
}
.plans-section .plan {
  width: 90%;
  max-width: 320px;
}
.plans-section .plan.featured {
  transform: scale(1);
}

.final-cta {
  padding: 4rem 0;
}
.final-cta h2 {
  font-size: 2rem;
}
.final-cta p {
  font-size: 1.1rem;
}

.whatsapp-float {
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  font-size: 25px;
}
.whatsapp-float i {
  margin-top: 13px;
}

@media (min-width: 768px) {
  .header .logo img {
    height: 40px;
  }
  .header-cta {
    display: inline-block;
  }
  .hero {
    padding: 8rem 0;
  }
  .hero .main-headline {
    font-size: 4rem;
  }
  .hero .sub-headline {
    font-size: 1.5rem;
  }
  .hero-cta {
    font-size: 1.5rem;
    padding: 1.2rem 3rem;
  }
  .social-proof {
    padding: 3rem 0;
  }
  .social-proof p {
    font-size: 1.2rem;
  }
  .social-proof .testimonials {
    flex-direction: row;
    gap: 2rem;
  }
  .plans-section {
    padding: 6rem 0;
  }
  .plans-section h2 {
    font-size: 3rem;
  }
  .plans-section .plans {
    flex-direction: row;
    align-items: center;
  }
  .plans-section .plan {
    width: 320px;
  }
  .plans-section .plan.featured {
    transform: scale(1.1);
  }
  .final-cta {
    padding: 6rem 0;
  }
  .final-cta h2 {
    font-size: 3rem;
  }
  .final-cta p {
    font-size: 1.3rem;
  }
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    font-size: 30px;
  }
  .whatsapp-float i {
    margin-top: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
