body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
  background: #f9f9f9;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
}

.hero {
  background: linear-gradient(to bottom, #2b1055, #7597de);
  background-image: url("./assets/bg.jpg");
  min-height: 50vh;
  background-size: cover;
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-weight: 500;
  font-size: 50px;
}

.hero p {
  font-weight: 100;
  font-size: 24px;
  line-height: 2rem;
  padding: 0 10rem;
}

.hero img {
  max-width: 300px;
}

.btn {
  background: #00d084;
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 208, 132, 0.3);
}

.btn:hover {
  background: #00b374; /* tom mais escuro */
  transform: scale(1.05); /* leve aumento */
  box-shadow: 0 6px 16px rgba(0, 208, 132, 0.5); /* mais destaque */
}

.benefits {
  padding: 2rem 1rem;
  background: #fff;
  text-align: center;
}

.benefits ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.benefits li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  background: #eef6ff;
}

.highlight img {
  max-width: 250px;
  margin-bottom: 1rem;
}

.testimonials {
  background: #f0f0f0;
  padding: 2rem 1rem;
  text-align: center;
}

footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  background: #222;
  color: #fff;
}

/* BENEFICIOS SECTION */

.benefits-section {
  background: #ffff;
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.benefits-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 2rem;
  border-radius: 1.5rem;
}

.benefits-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 350px;
}

.benefits-content {
  flex: 1;
  min-width: 300px;
}

.benefits-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4a0033;
}

.benefits-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  color: #4a0033;
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn {
  background: #00d084;
  color: white;
  padding: 1rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #00b373;
  transform: scale(1.05);
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.2rem;
}

/* DEPOIMENTOS */

.depoiments {
  background: linear-gradient(to bottom, #ffffff 0%, #fff0f6 100%);
  padding: 3rem 1rem;
  text-align: center;
}

.depoiments h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4a0033;
}

.depoiments-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-multi {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome */
}

.carousel-card {
  flex: 0 0 calc(25% - 1rem); /* 4 cards por vez */
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  min-width: 250px;
  box-sizing: border-box;
}

.carousel-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.carousel-card h4 {
  color: #4a0033;
  margin-bottom: 0.5rem;
}

.carousel-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.carousel-card span {
  font-size: 0.75rem;
  color: gray;
}

/* Botões */
#prevBtn,
#nextBtn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #4a0033;
  cursor: pointer;
  padding: 0 1rem;
  transition: transform 0.2s ease;
}

#prevBtn:hover,
#nextBtn:hover {
  transform: scale(1.2);
}

/* Responsivo: 3 cards em tablets, 1 em celulares */
@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 calc(33.33% - 1rem);
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(100% - 1rem);
  }
}

/* BENEFITS */

.materias {
  background: linear-gradient(to bottom, #ffffff 0%, #fff0f6 100%);
  padding: 3rem 1rem;
  text-align: center;
}

.materias h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4a0033;
}

.materias-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.materias-multi {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.materias-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}

.materias-track::-webkit-scrollbar {
  display: none; /* Chrome */
}

.materias-card {
  flex: 0 0 calc(25% - 1rem); /* 4 cards por vez */
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  min-width: 250px;
  box-sizing: border-box;
}

.materias-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.materias-card h4 {
  color: #4a0033;
  margin-bottom: 0.5rem;
}

.materias-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.materias-card span {
  font-size: 0.75rem;
  color: gray;
}

/* Botões */
#materiasPrevBtn,
#materiasNxtBtn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #4a0033;
  cursor: pointer;
  padding: 0 1rem;
  transition: transform 0.2s ease;
}

#materiasPrevBtn:hover,
#materiasNxtBtn:hover {
  transform: scale(1.2);
}

/* Responsivo: 3 cards em tablets, 1 em celulares */
@media (max-width: 1024px) {
  .materias-card {
    flex: 0 0 calc(33.33% - 1rem);
  }
}

@media (max-width: 768px) {
  .materias-card {
    flex: 0 0 calc(100% - 1rem);
  }
}

/* kits */
.kits-preco {
  display: flex;
  justify-content: space-between;
  gap: 1rem; /* Espaço entre as imagens */
  flex-wrap: wrap; /* Permite quebrar linha em telas pequenas */
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.kits-preco a {
  flex: 1 1 22%; /* Cada kit ocupa cerca de 22% da largura, com quebra possível */
  min-width: 200px; /* Limita o tamanho mínimo para manter boa leitura */
  box-sizing: border-box;
}

.kits-preco img {
  width: 100%; /* ocupa toda largura do container */
  height: auto;
  display: block;
  border-radius: 8px; /* opcional, para deixar as imagens com cantos arredondados */
  object-fit: contain;
}

/* Responsivo para celular - empilha as imagens */
@media (max-width: 600px) {
  .kits-preco {
    flex-direction: column;
    align-items: center;
  }

  .kits-preco img{
    width: 80%;
  }

  .kits-preco .kit {
    flex: none;
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* FOOTER */

.footer-seguranca {
  background: linear-gradient(135deg, #8b93cf, #d8a0b2); /* azul-rosado escuro */
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 -2px 8px rgb(0 0 0 / 0.2);
}

.footer-seguranca h2 {
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.footer-seguranca .intro {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #f1d1dc;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.footer-seguranca ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 420px;
}

.footer-seguranca ul li {
  font-size: 1rem;
  margin: 0.7rem 0;
  padding-left: 1.8rem;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  color: #ffe1e9;
}

.footer-seguranca ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffd6e0;
  font-weight: bold;
  font-size: 1.2rem;
  top: 2px;
}

/* Ajustes responsivos gerais */

@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 calc(33.33% - 1rem);
  }
  
  .materias-card {
    flex: 0 0 calc(33.33% - 1rem);
  }
  
  .benefits-container {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 calc(100% - 1rem);
  }
  
  .materias-card {
    flex: 0 0 calc(100% - 1rem);
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .hero img {
    max-width: 200px;
  }

  body {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .footer-seguranca {
    padding: 2rem 1rem;
  }

  .footer-seguranca h2 {
    font-size: 1.5rem;
  }

  .footer-seguranca ul li {
    font-size: 0.9rem;
  }
}

/* Ajustes para scroll suave e margens laterais em carrosséis */

.carousel-track,
.materias-track {
  padding-left: 1rem;
  padding-right: 1rem;
}
