/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #2c3e50;
  background: #fff;
  line-height: 1.6;
}

/* Container padrão */
.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(45deg, #ff0844, #ffb199);
  color: #fff;
  padding: 3rem 1rem;
  border-radius: 1rem;
}

.hero__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 0.2rem 0.2rem 0.5rem rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Botões */
.btn {
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.btn--primary {
  background: #be1d45;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.35rem;
}

.btn--primary.btn--large {
  background: linear-gradient(135deg, #be1d45, #ff0844);
  color: white;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(190, 29, 69, 0.3);
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.btn--primary.btn--large:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Benefícios */
.section__title {
  font-size: 1.75rem;
  text-align: center;
  color: #ff0844;
  font-weight: 900;
  margin-bottom: 2rem;
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits__item {
  background: #f7f7f7;
  padding: 1.5rem;
  border-left: 5px solid #ff0844;
  border-radius: 1rem;
}

.benefits__item strong {
  font-size: 1.25rem;
  color: #ff0844;
}

/* Seção de CTA final */
.mega-cta__scarcity {
  font-size: 1.5rem;
  color: #ba1010;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}

.mega-cta__title {
  font-size: 2rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  text-align: center;
}

.mega-cta__pricing {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: center;
  font-weight: bold;
}

.mega-cta__old {
  text-decoration: line-through;
  color: #aaaaaa;
  font-size: 1.3rem;
}

.mega-cta__new {
  color: #c8102e;
  font-weight: 900;
  font-size: 1.7rem;
}

/* Botão fixo */
.fixed-cta {
  background-color: #be1d45;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  display: none;
}

.fixed-cta a {
  color: #fff;
  text-decoration: none;
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .fixed-cta { display: block; }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .btn--primary {
    font-size: 1rem;
    padding: 0.8rem 1.25rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .mega-cta__title {
    font-size: 1.5rem;
  }

  .btn--primary.btn--large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}

/* Desktop */
@media (min-width: 769px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.3rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .btn--primary.btn--large {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
  }
}
