@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&display=swap');

/* ========================================
   RESET E BASE
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  overflow-x: hidden;
  width: 100%;
  color: #2C3E50;
  line-height: 1.6;
}

/* ========================================
   ANIMAÇÕES
======================================== */

@keyframes moveBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ========================================
   BANNER DE URGÊNCIA (TOPO)
======================================== */

.headline-urgencia {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(90deg, #1D3F66, #254B75, #2E5A85, #3A6B96, #2C4D66);
  background-size: 400% 100%;
  animation: moveBackground 4s ease infinite;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(29, 63, 102, 0.3);
}

.urgencia-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.urgencia-icon {
  font-size: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.urgencia-text {
  font-family: 'Sora', sans-serif;
  color: white;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.urgencia-text strong {
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .urgencia-text {
    font-size: 13px;
  }
  .urgencia-icon {
    font-size: 1.2rem;
  }
}

/* ========================================
   SEÇÃO PRINCIPAL (HEADER)
======================================== */

.main {
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(180deg, rgba(29, 63, 102, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.container {
  font-family: 'Sora', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out;
}

.container img.logo {
  width: 100%;
  max-width: 380px;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}


.container h1 {
  font-family: 'Cinzel', serif;
  text-align: center;
  color: #1D3F66;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 650px;
  letter-spacing: 0.3px;
}

.paragrafo-destaque {
  color: #2C3E50;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 550px;
  line-height: 1.7;
}

.button-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.button-container a {
  text-decoration: none;
  width: 100%;
  max-width: 450px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.3rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  font-family: 'Cinzel', serif;
  border: none;
  cursor: pointer;
  
  background: linear-gradient(135deg, #0d9f48, #0a7f39, #075f2b);
  background-size: 200% 100%;
  
  box-shadow: 
    0 8px 25px rgba(13, 159, 72, 0.4),
    0 4px 12px rgba(13, 159, 72, 0.3);
  
  transition: all 0.3s ease;
  animation: zoomIn 1.5s ease-in-out infinite alternate;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(13, 159, 72, 0.5),
    0 6px 16px rgba(13, 159, 72, 0.4);
  animation: none;
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* ========================================
   NOVA SEÇÃO: COM O MAPEIE TRANSTORNOS
======================================== */

.secao-aprendizado {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #1D3F66 0%, #2E5A85 100%);
}

.container-aprendizado {
  max-width: 900px;
  margin: 0 auto;
}

.titulo-aprendizado {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lista-aprendizado {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
}

.item-aprendizado {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.3rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.item-aprendizado:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.check-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

.item-aprendizado p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .titulo-aprendizado {
    font-size: 24px;
  }
  .lista-aprendizado {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   VERSÍCULOS / FRASES DE IMPACTO
======================================== */

.versiculo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, rgba(29, 63, 102, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.versiculo p {
  color: #1D3F66;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  max-width: 700px;
  text-align: center;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

/* ========================================
   MÓDULOS (CARROSSEL)
======================================== */

.modulos-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #1E3F66 0%, #2C4D66 100%);
  overflow-x: hidden;
}

.titulo-secao {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, #C0C0C0, #E8E8E8, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mySwiper {
  width: 100%;
  max-width: 1200px;
  height: 420px;
  padding: 0rem 0;
}

.mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 280px;
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.swiper-wrapper {
  margin-bottom: 2rem;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: rgba(26, 26, 26, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #7700ff;
  box-shadow: 0 0 15px rgba(13, 159, 72, 0.8);
}

/* ========================================
   PROVA SOCIAL (DEPOIMENTOS)
======================================== */

.prova-social {
  width: 100%;
  max-width: 1200px;
  margin: 0rem auto;
  padding: 0 1rem;
}

.prova-social .swiper {
  width: 100%;
  padding: 2rem 0;
}

.prova-social .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper {

  padding: 0rem!important;
}

.prova-social .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================================
   SEÇÃO PROBLEMAS (Você não precisa mais)
======================================== */

.secao-problemas {
  background: linear-gradient(135deg, #1d3f66 0%, #2c4d66 100%);
  padding: 3rem 1rem;
}

.container-problemas {
  max-width: 900px;
  margin: 0 auto;
}

.titulo-problemas {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  background: linear-gradient(90deg, #C0C0C0, #E8E8E8, #FFFFFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lista-problemas {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.card-problema {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(19, 42, 68, 0.6);
  backdrop-filter: blur(10px);
  padding: 1.8rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card-problema:hover {
  background: rgba(19, 42, 68, 0.8);
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.icon-problema {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.texto-problema {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .card-problema {
    flex-direction: column;
    text-align: center;
  }
  .icon-problema {
    font-size: 2rem;
  }
}

/* ========================================
   MOCKUP DO PRODUTO
======================================== */

.secao-mockup {
  background: #ffffff;
  padding: 3rem 1rem;
}

.container-mockup {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titulo-mockup {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1D3F66;
  margin-bottom: 2rem;
}

.mockup-img {
  width: 100%;
  max-width: 600px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 30px rgba(29, 63, 102, 0.2));
  transition: transform 0.3s ease;
}

.mockup-img:hover {
  transform: scale(1.02);
}

.descricao-mockup {
  color: #2C3E50;
  font-size: 16px;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
  max-width: 700px;
}

.descricao-mockup strong {
  color: #1D3F66;
  font-weight: 700;
}

/* ========================================
   SEÇÃO BÔNUS
======================================== */

.secao-bonus {
  background: #1357a5;
  padding: 3rem 1rem;
}

.bonus-content {
  max-width: 900px;
  margin: 0 auto;
}

.bonus-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
  text-align: center;
}

.bonus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bonus-divider .line {
  width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.bonus-divider .gift {
  font-size: 2rem;
}

.bonus-titulo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.bonus-subtitulo {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.bonus-destaque {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  background: linear-gradient(120deg, #001f3f, #003366, #004080, #003366, #001f3f);
  background-size: 300% 300%;
  animation: moveBackground 5s linear infinite;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bonus-lead {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.bonus-lead strong {
  font-weight: 700;
  color: #FFD700;
}

/* Cards de Bônus */
.card-bonus {
  background: #add0f8;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.bonus-mockup {
  width: 100%;
  max-width: 400px;
  margin-top: -10rem;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.bonus-mockup:hover {
  transform: scale(1.05);
}

.bonus-nome {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  /* Degradê animado nos títulos dos bônus */
  background: linear-gradient(
    120deg,
    #000814, #001d3d, #003566, #004080, #2f85db,
    #004080, #003566, #001d3d, #000814
  );
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.bonus-valor {
  background: #FF0000;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: line-through;
  margin-bottom: 1.5rem;
}

.bonus-descricao {
  color: #2C3E50;
  font-size: 15px;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 650px;
}

.bonus-descricao strong {
  color: #1D3F66;
  font-weight: 700;
}

.bonus-hoje {
  background: #1457a5;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.bonus-hoje strong {
  font-weight: 800;
}

/* ========================================
   SEÇÃO OFERTA FINAL
======================================== */

.secao-oferta {
  background: #ffffff;
  padding: 3rem 1rem;
}

.card-oferta {
  max-width: 550px;
  margin: 0 auto;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #1d3f66, #2c5d91, #4a90d9) border-box;
  border: 3px solid transparent;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 50px rgba(29, 63, 102, 0.2);
}

.oferta-headline {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1D3F66;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.oferta-logo {
  width: 70%;
  max-width: 300px;
  display: block;
  margin: 0 auto 2rem auto;
}

.oferta-preco-antigo {
  text-align: center;
  font-size: 15px;
  color: #666666;
  margin-bottom: 1rem;
}

.oferta-desconto {
  font-size: 18px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.oferta-preco-destaque {
  text-align: center;
  margin-bottom: 2rem;
}

.oferta-preco-numero {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #0d9f48;
  line-height: 1;
}

.oferta-centavos {
  font-size: 20px;
  font-weight: 700;
  color: #0d9f48;
}

.oferta-avista {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
  margin-top: 0.5rem;
}

.oferta-beneficios {
  border-top: 1px solid rgba(29, 63, 102, 0.2);
  border-bottom: 1px solid rgba(29, 63, 102, 0.2);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.beneficio-item {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #2C3E50;
  margin-bottom: 0.7rem;
}

.link-cta {
  display: block;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.btn-cta {
  width: 100%;
  padding: 1.3rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  font-family: 'Cinzel', serif;
  border: none;
  cursor: pointer;
  
  background: linear-gradient(135deg, #0d9f48, #0a7f39);
  box-shadow: 0 8px 25px rgba(13, 159, 72, 0.4);
  transition: all 0.3s ease;
    animation: zoomIn 1.5s ease-in-out infinite alternate;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 159, 72, 0.5);
}

.oferta-pgto {
  width: 140px;
  display: block;
  margin: 0 auto;
}

/* ========================================
   GARANTIA
======================================== */

.secao-garantia {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 3rem 1rem;
  background: linear-gradient(180deg, rgba(29, 63, 102, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.garantia-img {
  width: 100%;
  max-width: 280px;
  transform-origin: center;
  transform: rotate(-45deg); /* valor inicial da rotação */
  transition: transform 0.1s linear; /* suaviza o movimento */
  filter: drop-shadow(0 8px 25px rgba(29, 63, 102, 0.25));
}

.garantia-img:hover {
  /* Remove hover effect para não conflitar com animação de scroll */
}

.garantia-texto {
  max-width: 500px;
}

.garantia-titulo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1D3F66;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.garantia-destaque {
  color: #0d9f48;
  font-weight: 800;
}

.garantia-descricao {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .secao-garantia {
    flex-direction: column;
    text-align: center;
  }
  .garantia-texto {
    text-align: center;
  }
}

/* ========================================
   FAQ
======================================== */

.secao-faq {
  background: #1d3f66;
  padding: 3rem 1rem;
}

.faq-imagem {
  width: 100%;
  max-width: 450px;
  display: block;
  margin: 0 auto 3rem auto;
}

.accordion {
  background: rgba(22, 50, 81, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.accordion:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.accordion-title {
  font-weight: 600;
  padding: 1.3rem 1rem;
  font-size: 17px;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}

.accordion-title:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-icon .chevron {
  display: inline-block;
  font-size: 1.2rem;
  transition: transform 0.3s ease-in-out;
  color: #0d9f48;
}

.accordion.active .accordion-icon .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  background: rgba(22, 50, 81, 0.9);
  color: #E8E8E8;
  font-size: 15px;
  line-height: 1.7;
}

.accordion.active .accordion-content {
  max-height: 600px;
  padding: 1.3rem 1rem;
}

/* ========================================
   RESPONSIVIDADE GERAL
======================================== */

@media (max-width: 768px) {
  .container h1 {
    font-size: 24px;
  }
  
  .titulo-secao,
  .titulo-problemas,
  .titulo-mockup {
    font-size: 26px;
  }
  
  .btn-primary {
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
  }
  
  .mySwiper {
    height: 380px;
  }
  
  .mySwiper .swiper-slide {
    width: 250px;
    height: 340px;
  }
}

@media (max-width: 480px) {
  .container h1 {
    font-size: 22px;
  }
  
  .paragrafo-destaque {
    font-size: 15px;
  }
  
  .versiculo p {
    font-size: 16px;
  }
  
  .btn-primary {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}
