:root {
  --vermelho: #FF1F1F;
  --preto: #000;
  --cinza-bg: #0E0E0E;
  --branco: #fff;
  --cinza-texto: #aaa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--cinza-bg);
  color: var(--branco);
  font-family: 'Sora', sans-serif;
  line-height: 1.6;
}

/* ========== HERO ========== */
.hero {
  display: flex;
  flex-direction: column; /* MOBILE FIRST */
  align-items: center;
  text-align: center;
  padding: 40px 5%;
  gap: 25px;
}

/* Imagem ZE vem primeiro no mobile */
.hero-img {
  order: -1; /* força o ze.png a ser o primeiro */
  position: relative;
}

.img-ze {
  width: 90%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  z-index: 1;
}

.icones {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2;
}

.icones img {
  width: 55px;
  height: 55px;
  animation: flutuar 3s ease-in-out infinite;
  opacity: 0.95;
}

/* Texto abaixo do personagem */
.hero-texto {
  max-width: 500px;
}

.hero-texto .logo {
  width: 200px;
  margin: 0 auto 15px auto;
  display: block;
}

.hero-texto h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.3;
}

.hero-texto p {
  font-size: 1rem;
  margin-bottom: 22px;
}

.destaque {
  color: var(--vermelho);
  font-weight: 600;
}

/* Botão */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--vermelho);
  color: var(--branco);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.btn img {
  width: 16px;
}

.btn:hover {
  background: #e01616;
}

/* ========== TEXTO ABAIXO ========== */
.texto {
  text-align: center;
  margin: 60px auto;
  max-width: 700px;
  padding: 0 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.texto .red {
  color: var(--vermelho);
  font-weight: 600;
}

.seta-baixo {
  display: block;
  margin: 20px auto 0;
  width: 70px;
  animation: flutuar-seta 2s ease-in-out infinite;
}

/* ========== VÍDEO ========== */
.video {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.video-box {
  width: 92%;
  max-width: 750px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.video iframe {
  width: 100%;
  height: 230px; /* mobile */
  display: block;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #000;
  padding: 60px 0 40px 0;
  text-align: center;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-legal {
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--cinza-texto);
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: underline dotted;
  margin: 0 5px;
}

.footer-links a:hover {
  color: var(--vermelho);
}

.footer-copy {
  color: var(--cinza-texto);
  font-size: 0.9rem;
}

/* ========== ANIMAÇÕES ========== */
@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes flutuar-seta {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ========== DESKTOP (acima de 769px) ========== */
@media (min-width: 769px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 60px;
    padding: 80px 5%;
  }

  .hero-img {
    order: 2; /* volta pro lado direito */
  }

  .img-ze {
    max-width: 380px;
  }

  .icones {
    top: 20%;
    left: auto;
    right: -40px;
    transform: none;
    flex-direction: column;
  }

  .icones img {
    width: 70px;
    height: 70px;
  }

  .hero-texto {
    flex: 1;
    max-width: 500px;
  }

  .hero-texto h1 {
    font-size: 2.4rem;
  }

  .hero-texto p {
    font-size: 1.1rem;
  }

  .video iframe {
    height: 420px;
  }

  .site-footer {
    text-align: left;
  }

  .container-footer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 3vw;
    flex-wrap: wrap;
  }

  .footer-credits-box {
    max-width: 750px;
  }
}


/* ===== ÍCONES MOBILE AJUSTADOS ===== */
@media (max-width: 768px) {
  .hero-img {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .icones {
    position: absolute;
    top: 0;
    left: 144px;
    width: 100%;
    height: 100%;
    pointer-events: none; /* evita clicar sem querer nos ícones */
  }

  .icones img {
    position: absolute;
    width: 55px;
    height: 55px;
    opacity: 0.95;
    animation: flutuar 3s ease-in-out infinite;
  }

  /* Ombro esquerdo */
  .icones .ic1 {
    top: 48%;
    left: 20%;
    transform: translate(-50%, -50%);
  }

  /* Peito (centro) */
  .icones .ic2 {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* Ombro direito */
  .icones .ic3 {
    top: 48%;
    left: 80%;
    transform: translate(-50%, -50%);
  }
}

/* ===== Seção GMV ===== */
.secao-gmv {
  background: #0B0B0F;
  padding: 80px 5%;
}

/* Bloco do título */
.titulo-box {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.titulo-box .toggle {
  width: 50px;
  height: 25px;
  background: var(--vermelho);
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}

.titulo-box .toggle::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3.5px;
  left: 28px; /* bolinha à direita */
}

.titulo-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.titulo-box .destaque {
  color: var(--vermelho);
}

.titulo-box .linha-divisoria {
  border: none;
  height: 1px;
  background: #333;
  margin: 20px 0 0 0;
  width: 100%;
}

/* Grid */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #1f1f2a;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(255, 31, 31, 0.25);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon img {
  width: 28px;
}

.bg-red {
  background: var(--vermelho);
}

.bg-white {
  background: #fff;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.card .sub {
  color: var(--vermelho);
  font-size: 0.9rem;
  font-weight: 400;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

.card .red {
  color: var(--vermelho);
  font-weight: 600;
}

/* Responsividade */
@media (min-width: 769px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Faixa Áreas ===== */
.faixa-areas {
  background: #111219;
  padding: 30px 0; /* deixa a faixa mais grossa */
  overflow: hidden;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  position: relative;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
}

.marquee-content span {
  display: inline-block;
  margin: 0 50px; /* mais espaço entre as áreas */
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-content .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--vermelho);
  border-radius: 50%;
  margin: 0 40px;
}

/* Efeito de rolagem infinita */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* move metade, pq duplicamos */
}

/* ===== Seção WhatsApp ===== */
.secao-whatsapp {
  background: #0B0B0F;
  padding: 60px 5%;
  text-align: center;
}

.container-whats {
  max-width: 700px;
  margin: 0 auto;
}

.container-whats p {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
}

/* Botão WhatsApp */
.btn-whats {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1.5px solid #25D366;
  border-radius: 40px;
  color: #25D366;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-whats img {
  width: 22px;
  height: 22px;
}

.btn-whats:hover {
  background: #25D366;
  color: #0B0B0F;
}

/* ===== Seção Conteúdos ===== */
.secao-conteudos {
  background: #0B0B0F;
  padding: 80px 5%;
}

.conteudos-header {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  text-align: left;
  color: #fff;
}

.conteudos-header .linha-vermelha {
  width: 120px;
  height: 3px;
  background: var(--vermelho);
  margin-bottom: 20px;
}

.conteudos-header h4 {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #9b9b9b;
  margin-bottom: 15px;
}

.conteudos-header h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: right;
  margin-bottom: 30px;
}

.conteudos-header .destaque {
  color: var(--vermelho);
}

/* ===== Cards ===== */
.card-conteudo {
  border: 1px solid #2a2a2a; /* borda cinza */
  border-radius: 12px;
  overflow: hidden; /* para o detalhe vermelho ficar dentro */
  min-width: 220px; /* mais estreito */
  max-width: 260px;
  margin: auto;
  background: #14141a;
}

.card-top-bar {
  height: 6px;
  width: 40px; /* detalhe vermelho curto */
  background: var(--vermelho);
  border-radius: 0 0 4px 4px;
  margin-left: 20px;
}

.card-inner {
  padding: 25px;
  color: #fff;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.badge-num {
  background: var(--vermelho);
  color: #fff;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.badge-modulo {
  background: #1f1f1f;
  color: #ccc;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
}

.card-conteudo h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-conteudo ul {
  list-style: none;
  padding: 0;
}

.card-conteudo ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #ccc;
}

.card-conteudo ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--vermelho);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}

/* ===== Swiper ===== */
.conteudos-swiper {
  padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--vermelho);
}

.swiper-pagination-bullet {
  background: #666;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--vermelho);
}
.carrossel-section {
  background: #0B0B0F;
  padding: 60px 5%;
  text-align: center;
}

.carrossel-title {
 font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: #fff;
}

.carrossel-title .highlight {
  color: var(--vermelho);
  font-weight: 700;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

.video-card iframe {
  width: 340px !important;
  height: 610px !important;
  border: none;
  display: block;
  margin: 0 auto;
}

/* Swiper Custom */
.carrossel-swiper {
  padding-bottom: 50px;
}

.carrossel-swiper .swiper-button-prev,
.carrossel-swiper .swiper-button-next {
  color: var(--vermelho);
}

.carrossel-swiper .swiper-pagination-bullet {
  background: #666;
  opacity: 1;
}

.carrossel-swiper .swiper-pagination-bullet-active {
  background: var(--vermelho);
}

@media (max-width: 768px) {
  .video-card iframe {
    width: 100% !important;   /* ocupa largura da tela */
    height: 500px !important; /* ajusta para caber */
  }
}


.secao-oferta {
  background: #0B0B0F;
  padding: 100px 5%; /* aumentado em 25% */
}

.container-oferta {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap; /* para o mobile quebrar */
}

/* Coluna esquerda */
.oferta-card {
  background: #14141a;
  border-radius: 12px;
  padding: 50px 40px; /* aumentado */
  color: #fff;
  flex: 1;
  min-width: 320px;
  max-width: 520px; /* aumentado de 420px */
  box-shadow: 0 0 25px rgba(0,0,0,0.35);
}

.toggle-oferta {
  width: 40px;
  height: 20px;
  background: #ff1f1f;
  border-radius: 50px;
  margin-bottom: 25px;
  position: relative;
}
.toggle-oferta::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 22px;
}

.oferta-card h3 {
  font-size: 1.8rem; /* aumentado */
  margin-bottom: 28px;
  font-weight: 600;
}

.oferta-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}
.oferta-card ul li {
  border-bottom: 1px solid #2a2a2a;
  padding: 14px 0;
  font-size: 1.1rem; /* maior */
  color: #ddd;
}

.preco-antigo {
  color: #999;
  font-size: 1rem; /* maior */
  margin-bottom: 10px;
}
.preco-parcelado {
  font-size: 2.2rem; /* maior */
  font-weight: 700;
  margin-bottom: 28px;
}
.preco-parcelado span {
  font-size: 1.1rem;
  font-weight: 400;
  color: #aaa;
  margin-left: 10px;
}

.btn-comprar {
  display: block;
  background: #28a745;
  color: #fff;
  text-align: center;
  padding: 18px; /* maior */
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: background 0.3s;
}
.btn-comprar:hover {
  background: #218838;
}

.pagamentos img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0.9;
}

/* Coluna direita */
.garantia {
  flex: 1;
  min-width: 320px;
  max-width: 520px; /* aumentado */
  text-align: center;
  color: #fff;
}
.garantia .selo {
  max-width: 310px; /* aumentado de 250px */
  margin-bottom: 30px;
}
.garantia h4 {
  font-size: 1.5rem; /* maior */
  font-weight: 600;
  margin-bottom: 18px;
}
.garantia p {
  font-size: 1.1rem; /* maior */
  color: #bbb;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
  .container-oferta {
    flex-direction: column;
    text-align: center;
    gap: 50px; /* maior espaçamento no mobile */
  }
  .oferta-card {
    max-width: 100%;
  }
  .garantia {
    max-width: 100%;
  }
}
/* ===== Seção Mentor ===== */
.secao-mentor {
  background: #0B0B0F;
  padding: 100px 5%;
  position: relative;
}

/* Container */
.container-mentor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Imagem */
.mentor-img img {
  max-width: 450px;
  width: 100%;
  height: auto;
  display: block;
}

/* Box de Texto */
.mentor-box {
  background: #14141a;
  border-radius: 12px;
  padding: 40px;
  color: #fff;
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  border: 1px solid #2a2a2a;
}

/* Título */
.mentor-titulo {
  color: #ff1f1f;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Nome */
.mentor-nome {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}
.mentor-nome span {
  color: #fff;
}

/* Texto */
.mentor-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 18px;
}

/* ===== Responsividade ===== */
@media (max-width: 900px) {
  .container-mentor {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .mentor-img img {
    max-width: 320px;
    margin: 0 auto;
  }

  .mentor-box {
    max-width: 100%;
    text-align: left;
  }

  .mentor-nome {
    font-size: 1.5rem;
  }

  .mentor-box p {
    font-size: 0.95rem;
  }
}
/* ===== FAQ ===== */
.secao-faq {
  background: #0B0B0F;
  padding: 100px 5%;
}

.container-faq {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

/* Coluna Esquerda */
.faq-left {
  flex: 2;
  min-width: 320px;
}

.faq-titulo {
  color: #ff1f1f;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.faq-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.faq-left hr {
  border: 0;
  border-top: 1px solid #333;
  margin-bottom: 30px;
}

.faq-item {
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-pergunta {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-pergunta span {
  color: #ff1f1f;
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-resposta {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.5;
}

/* Coluna Direita */
.faq-right {
  flex: 1;
  min-width: 280px;
}

.faq-suporte {
  background: #14141a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 30px;
  color: #fff;
  text-align: left;
}

.faq-suporte h5 {
  color: #ff1f1f;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.faq-suporte p {
  margin-bottom: 20px;
  color: #ddd;
}

.btn-suporte {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-suporte:hover {
  background: #218838;
}

/* Responsivo */
@media (max-width: 900px) {
  .container-faq {
    flex-direction: column;
  }
  .faq-right {
    text-align: center;
  }
}
