/* 1. Reset e Box Sizing Global */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Variáveis de Cores e Fontes */
:root {
  --font-principal: 'Kumbh Sans', sans-serif;
  --font-secundaria: "Orbitron", sans-serif;
  --cor-fundo: #04000F;
  --cor-branco: #ffffff;
  --cor-primaria: #FA1A7B;
  --rosa-escuro: #e30171;
  --cor-secundaria: #808080;
  --cor-texto: #b6b6b9;
  --cor-titulo: #ffffff;
  --titulos: 2.5rem;
}

/* 3. Tipografia Base */
body {
  font-family: var(--font-principal);
  /* font-size: 16px; */
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
  line-height: 1.6;
}


/* Base container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  /* background-color: #2B1145; */
  /* Fallback color */
  /* background-image: radial-gradient(29.77% 29.77% at 70.23% 0%, #2B1145 0%, #04000F 100%); */
  background-image: url('../images/fundo3-hero.png');
  color: #ffffff;
  padding: 4rem 0;
  /* height: 100vh; */
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Texto */
.hero-texto {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero-texto h2 {
  font-size: 1rem;
}

.icon-curso {
  width: 44px;
  height: 44px;
  /* margin-bottom: 1rem; */
}

.hero-texto h1 {
  display: flex;
  gap: 0.9rem;
  font-size: var(--titulos);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.5rem;
  align-items: center;
}

.hero-texto h1 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffffcc;
}

.professor {
  font-family: var(--font-secundaria);
}

.hero-texto .subtitulo {
  font-size: 1.2rem;
  line-height: 1.6;
  /* margin-bottom: 1.5rem; */
  color: #dcdcdc;
}

.preco {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cor-texto);
}

.btn-cta {
  display: flex;
  width: 360px;
  background-color: var(--cor-primaria);
  /* rosa padrão */
  color: var(--cor-branco);
  padding: 1rem 1.5rem;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-cta:hover {
  background-color: var(--cor-primaria);
  /* mantém a mesma cor */
  transform: scale(1.05);
  /* aumenta 5% */
}

/* Imagem */
.hero-imagem img {
  width: 100%;
  height: auto;
  max-width: 450px;

}

/* Segunda Seção */
.section-crie-apps {
  display: flex;
  padding: 4rem 1rem;
  background-color: #81046b;
  background-image: radial-gradient(29.77% 29.77% at 70.23% 0%, #5f0e54 0%, #0f000c 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--cor-branco);
  line-height: 2.6rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--cor-branco);
  /* Ex: cinza escuro */
  margin-bottom: 2rem;
}

.divider {
  border: none;
  height: 1px;
  background-color: var(--cor-branco);
  width: 100%;
  margin: 2rem auto;
}

.cards-beneficios {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  justify-content: center;
  /* esse vai ajudar a centralizar se sobrar espaço */
  margin-top: 3rem;
  justify-items: center;
}

.card-beneficio {
  display: flex;
  max-width: 300px;
  background-color: var(--cor-branco);
  padding: 1.3rem;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
}

.card-beneficio:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.card-beneficio img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.card-beneficio h3 {
  font-size: 1.25rem;
  color: var(--cor-primaria);
  line-height: 1.5rem;
}

.card-beneficio p {
  font-size: 1rem;
  color: var(--cor-fundo);
}

/* Terceira Seção */
.section-cta {
  background-color: #000;
  /* fundo preto */
  color: #fff;
  /* texto branco */
  padding: 4rem 1rem;
  text-align: center;
}

.cta-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.cta-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--cor-primaria, #00e0ff);
  line-height: 2.6rem;
}

.cta-header p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  color: #ccc;
  /* cor de texto secundária */
}

.btn-cta-three {
  display: flex;
  width: 325px;
  background-color: var(--cor-primaria);
  /* rosa padrão */
  color: var(--cor-branco);
  padding: 1rem 1.5rem;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-cta-three:hover {
  background-color: var(--cor-primaria);
  /* mantém a mesma cor */
  transform: scale(1.05);
  /* aumenta 5% */
}

.cta-offer-card {
  background: #0a0a0a;
  color: #fff;
  padding: 2rem;
  border: 1px solid #ff007f;
  border-radius: 26px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-offer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-offer-content h3 {
  color: #ff007f;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.cta-offer-content h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 2rem;
}

.cta-offer-content p {
  color: #ff007f;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cta-offer-content ul {
  display: flex;
  list-style: none;
  padding: 0;
  text-align: left;
  gap: 1rem;
  flex-direction: column;
}

.cta-offer-content ul li {
  position: relative;
  padding-left: 24px;
  /* Adjust based on the size of the icon */
}

.cta-offer-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  /* Adjust based on the size of the SVG */
  height: 16px;
  background-image: url('../images/check-yellow.svg');
  /* Path to your SVG file */
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-offer-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-offer-pricing h4 {
  color: #ff007f;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.preco-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.cta-offer-pricing .price {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  font-size: 4rem;
  font-weight: bold;
  margin: 0.5rem 0;
  justify-content: center;
}

.cta-offer-pricing .currency {
  font-size: 1.2rem;
  align-self: flex-start;
}

.cta-offer-pricing .cents {
  font-size: 1.2rem;
  align-self: flex-end;
}

.old-price {
  text-decoration: line-through;
  color: #bbb;
  margin: 0.5rem 0;
}

.price-discounted {
  font-weight: bold;
  color: #fff;
}

.payment-info,
.info,
.secure {
  font-size: 0.9rem;
  color: #bbb;
}

.btn-cta-offer {
  background-color: #ffcc00;
  color: #000;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  display: block;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
}

.btn-cta-offer:hover {
  background-color: #ffdd33;
}

.secure {
  margin-top: 0.5rem;
  text-align: center;
}



/* QUARTA SEÇÃO */
.section-mercado {
  background-color: #fff;
  color: #000;
  padding: 4rem 1rem;
  text-align: center;
}

.section-mercado .section-subtitle {
  color: var(--cor-secundaria);
  /* rosa ou cor de destaque */
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.section-mercado h2 {
  font-size: var(--titulos);
  margin-bottom: 2rem;
  line-height: 2.5rem;
}

.section-mercado .section-description {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: #555;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background-color: #f9f9f9;
  padding: 2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--cor-primaria, #00e0ff);
  /* ou use o rosa se preferir */
}

.feature-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.icon {
  width: 40px;
  height: 40px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 35px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--cor-fundo);
  color: var(--cor-fundo);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  transform: scale(1.05);
}


.btn-primary {
  background-color: var(--cor-primaria);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #e6006f;
  transform: scale(1.05);
}

.btn-porque {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cor-branco);
  color: var(--cor-fundo);
  /* Texto branco para contraste */
  padding: 1rem 1.5rem;
  border-radius: 35px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  gap: 0.5rem;
  border: none;
  /* Remove borda */
}

.btn-porque:hover {
  background: linear-gradient(90deg, #ff4081, #e6006f);
  /* Gradiente mais escuro no hover */
  transform: scale(1.05);
  /* Leve aumento no hover */
  color: var(--cor-branco);
}

/* QUINTA SEÇÃO */
.section-porque-bubble {
  /* background-color: var(--rosa-escuro); */
  background-image: url('../images/bg.png');
  background-size: contain;
  /* background-position: center;
  background-repeat: no-repeat; */
  padding: 4rem 1rem;
}

.section-porque-bubble .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-porque-bubble h2 {
  font-size: var(--titulos);
  font-weight: 700;
  color: var(--cor-branco);
  line-height: 2.6rem;
}

.section-porque-bubble p {
  font-size: 1.4rem;
  color: var(--cor-branco);
  margin-top: 1rem;
}

.cards-porque {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-porque {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--cor-branco);
  border-radius: 45px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  padding: 1.8rem;
  gap: 2rem;
}

.card-reverso {
  padding: 2rem;
}

.card-porque:hover {
  transform: scale(1.02);
}

.card-porque-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 30px;

}

.card-porque-texto {

  text-align: center;
}

.card-porque-texto h3 {
  font-size: 1.5rem;
  color: var(--cor-primaria);
  text-align: left;
  line-height: 2rem;
}

.card-porque-texto p {
  font-size: 1rem;
  color: var(--cor-fundo);
  text-align: left;
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* SEXTA SEÇÃO */
.section-faq {
  background-color: var(--cor-branco);
  padding: 4rem 1rem;
}

.section-faq .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-faq h2 {
  font-size: var(--titulos);
  font-weight: 700;
  color: var(--cor-fundo);
}

.section-faq p {
  font-size: 1.3rem;
  color: var(--cor-fundo);
  margin-top: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item details {
  background: var(--cor-titulo);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-item details:hover {
  background: var(--cor-titulo);
}

.faq-item summary {
  position: relative;
  font-weight: 600;
  font-size: 1.125rem;
  list-style: none;
  outline: none;
  color: var(--cor-secundaria);
  cursor: pointer;
  padding-right: 1.5rem;
  /* Espaço para a seta */
}

.faq-item summary::after {
  content: '▶';
  /* Ícone de seta para direita */
  position: absolute;
  right: 0;
  /* Alinha no canto direito */
  top: 50%;
  transform: translateY(-50%);
  /* Centraliza verticalmente */
  transition: transform 0.3s ease;
}

/* Quando o details está aberto, gira a seta */
.faq-item details[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
  /* Gira a seta para baixo */
}


.faq-item summary::marker {
  display: none;
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--cor-fundo);
  line-height: 1.6;
}

/* RODAPÉ */
.footer {
  background-color: #000;
  /* Fundo preto */
  color: var(--cor-titulo);
  /* Texto branco */
  padding: 2rem 1rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: var(--cor-titulo);
}

.footer-copy {
  font-size: 0.875rem;
  color: #ccc;
}



/* Responsivo para tablets e desktops */
@media (min-width: 768px) {
  .hero {
    height: 100vh;
    background-image: url('../images/fundo3-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-content {
    /* height: 100vh; */
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;


  }

  .hero-texto {
    flex: 3;
    /* padding-right: 2rem; */
  }

  .hero-imagem {
    flex: 1;
    text-align: right;
  }

  .cards-beneficios {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-offer-pricing h4 {
    font-size: 1.6rem;
    font-weight: 400;
  }

  .cta-header h2 {
    font-size: var(--titulos);
  }

  .cta-header p {
    font-size: 1.25rem;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .card-porque {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .card-porque-img {
    flex: 1;
  }

  .card-porque-texto {
    flex: 1;
  }

  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {

  .hero {
    height: 90vh;
  }

  .hero-content {
    display: flex;
    flex-direction: row;
  }

  .hero-imagem img {
    max-width: 670px;
  }

  .cards-beneficios {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .cta-offer-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

  }

  .cta-offer-content {
    flex: 1;
    padding-right: 2rem;
    border-right: 1px solid #ccc;
    justify-content: space-around;
    align-items: flex-start;
  }

  .cta-offer-pricing {
    flex: 1;
    padding-left: 2rem;
  }

  .cta-offer-content h3 {
    font-size: 1.2rem;
  }

  .cta-offer-content h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 2.6rem;
    text-align: left;
  }

  .card-porque-img {
    padding: 0;
    border-radius: 26px;
  }
}