* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #222;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.hero-premium1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(25, 0, 35, 0.6), rgba(25, 0, 35, 0.6)),
    url("../img/images-fundo.jpeg") center center / cover no-repeat;
}

.hero-premium1__wrap {
  width: 100%;
  max-width: 980px;
}

.hero-premium1__title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-premium1__badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 14px;
  background: #930f77c7;
}

.hero-premium1__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-premium1__cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(180deg, #20d34a, #0aa934);
  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.25);
  transition: transform .2s ease, filter .2s ease;
}

.hero-premium1__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

/* GALERIA */
.galeria {
  padding: 60px 20px;
  text-align: center;
}

.galeria h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.galeria-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bolo {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.bolo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.bolo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bolo span {
  display: block;
  padding: 14px 10px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

/* TRAVESSAS */
.travessas {
  padding: 70px 0;
  text-align: center;
}

.travessas h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.travessas-sub {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 28px;
}

.travessas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

.travessa {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid #930f77c7;
  box-shadow: 0 4px 12px rgba(147, 15, 119, 0.10);
  transition: 0.3s ease;
}

.travessa:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(147, 15, 119, 0.18);
}

.travessa img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.travessa p {
  margin-top: 10px;
  font-weight: 600;
}

.btn-cta {
  display: inline-block;
  background: #1fb100;
  color: #fff;
  padding: 16px 24px;
  font-size: 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

/* APRENDER */
.aprender {
  padding: 80px 20px;
}

.aprender-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.aprender-texto h2 {
  font-size: 36px;
  color: #00a8d6;
}

.aprender-texto span {
  color: #00a8d6;
  border-bottom: 4px wavy #930f77c7;
}

.aprender-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.aprender-card {
  background: #930f77c7;
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 18px;
}

.aprender-card img {
  width: 40px;
}

/* PLANO */
.plano {
  background: #fff;
  padding: 70px 20px;
}

.plano-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.plano-texto {
  text-align: left;
}

.plano-texto h2 {
  color: #00a8d6;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 20px;
}

.plano-texto p {
  color: #930f77c7;
  font-size: 18px;
  line-height: 1.7;
  margin: 14px 0;
}

.plano-img img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
}

.btn-center {
  text-align: center;
  margin-top: 30px;
}

.btn-verde {
  display: inline-block;
  background: #1fb100;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 12px;
}

/* PÚBLICO */
.publico {
  padding: 80px 20px;
  background: #ffffff;
}

.publico-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.publico-imagem img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.publico-texto h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 25px;
}

.publico-texto h2 span {
  color: #930f77c7;
}

.publico-texto ul {
  list-style: none;
}

.publico-texto li {
  background: #f5f5f5;
  margin-bottom: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 18px;
  color: #333;
}

.publico-texto li strong {
  color: #930f77c7;
  font-weight: 800;
}

/* MODULOS */
.modulos {
  background: #930f77c7;
  padding: 80px 20px;
  text-align: center;
}

.modulos h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
}

.modulos h2 span {
  background: #00b4e6;
  padding: 5px 14px;
  border-radius: 12px;
}

.modulos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.modulo-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}

.modulo-card img {
  width: 120px;
  margin: 0 auto 15px;
}

.modulo-card h3 {
  color: #930f77c7;
  font-size: 22px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.modulo-card p,
.modulo-card li {
  color: #00a8cc;
  font-size: 16px;
}

.modulo-card ul {
  padding-left: 18px;
}

/* BONUS */
.bonus {
  background: #930f77c7;
  padding: 80px 20px;
  text-align: center;
}

.bonus h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 60px;
}

.bonus h2 span {
  background: #00a8cc;
  padding: 4px 12px;
  border-radius: 8px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
}

.bonus-card img {
  width: 220px;
  max-width: 100%;
  margin: 0 auto 20px;
}

.bonus-card h3 {
  color: #930f77c7;
  margin-bottom: 10px;
}

.bonus-card .titulo {
  color: #00a8cc;
  font-size: 18px;
  margin-bottom: 10px;
}

.bonus-card .desc {
  color: #666;
  font-size: 15px;
  line-height: 1.4;
}

/* DEPOIMENTOS */
.depoimentos {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  margin-bottom: 90px;
}

.depoimentos h2 {
  font-size: 36px;
  color: #00a8d6;
  margin-bottom: 50px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.depoimento {
  position: relative;
  background: #f2f2f2;
  border-radius: 22px;
  padding: 54px 26px 30px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

.avatar {
  position: absolute;
  top: -26px;
  left: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #ddd;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA */
.cta-box {
  max-width: 1100px;
  margin: 90px auto 0;
  background: #fff;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.cta-preco {
  padding: 50px 40px;
  text-align: center;
}

.tag-curso {
  background: #1db2d8;
  color: #fff;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 25px;
}

.preco-antigo {
  color: #e72a8a;
  font-size: 22px;
}

.preco-antigo span {
  text-decoration: line-through;
}

.preco-atual {
  margin: 20px 0;
}

.preco-atual .valor {
  font-size: 64px;
  color: #2dbb00;
  font-weight: bold;
  display: block;
}

.preco-atual .avista {
  color: #2dbb00;
  font-size: 22px;
}

.parcelado {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-garantia {
  background: #1db2d8;
  color: #fff;
  padding: 50px 40px;
  text-align: center;
}

.selo img {
  width: 180px;
  margin: 0 auto 25px;
}

.cta-garantia h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.texto-garantia {
  font-size: 18px;
  line-height: 1.6;
}

/* FAQ */
.faq {
  padding: 70px 16px;
  background: #efefef;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 28px;
  color: #111;
}

.faq-box {
  background: rgba(255,255,255,0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.faq-item {
  width: 100%;
  border: 0;
  background: rgba(0,0,0,0.06);
  padding: 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #222;
}

.faq-answer {
  background: rgba(0,0,0,0.03);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 18px 22px 22px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.faq-icon {
  font-size: 26px;
  font-weight: 900;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  transition: 0.2s;
}

/* RODAPE */
.rodape {
  background: #930f77c7;
  padding: 50px 20px;
  text-align: center;
  color: #ffffff;
}

.rodape-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 22px;
}

.rodape-links a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 18px;
}

.rodape-copy {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* RESPONSIVO */
@media (max-width: 1000px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .travessas-grid,
  .aprender-grid,
  .depoimentos-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .aprender-container,
  .plano-wrap,
  .publico-container {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .plano-texto {
    text-align: center;
  }

  .plano-texto h2,
  .publico-texto h2,
  .hero-premium1__title,
  .faq-title {
    font-size: 34px;
  }

  .hero-premium1__sub {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .galeria-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .hero-premium1__title {
    font-size: 30px;
  }

  .hero-premium1__cta,
  .btn-cta,
  .btn-verde {
    width: 100%;
    text-align: center;
  }

  .rodape-links {
    flex-direction: column;
    gap: 12px;
  }
}