/* ===================== CONFIGURAÇÕES GERAIS ===================== */

/* Fonte principal e estilo base */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;            /* <-- Evita estouro horizontal */
  max-width: 100vw;              /* <-- Garante que a largura nunca ultrapasse */
}

h1, h2, h3 {
  font-weight: 700;
  margin: 0;
}

section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.highlight {
  color: red;
}
.bold {
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-block;
  padding: 16px 28px;
  background-color: red;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 20px;
}
.btn:hover {
  background-color: darkred;
}
.btn.grande {
  font-size: 1rem;
  padding: 14px 30px;
}

/* ===================== SEÇÃO HERO ===================== */
.hero {
  padding: 80px 40px;
  background-color: #000;
  background-image: url('./assets/fundos/fundo_rosto.png');
  background-size: clamp(70%, 50vw, 100%);              /* Reduz o tamanho da imagem */
  background-position: right center; /* Alinha o rosto à direita */
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 40px;
}

.hero-left {
  flex: 1 1 500px;
  max-width: 500px;
  text-align: left;
  margin-top: 20px;
}

.hero-left h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left .slogan {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-left .mentoria-desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
  text-align: justify;
}

.hero-left .autor {
  font-style: italic;
  color: #888;
  margin-bottom: 25px;
}
.hero-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}
.hero-right img {
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

/* Redes Sociais */
.social {
  margin-top: 3rem;
  display: flex;
  align-items: center; /* Alinha texto e ícones na horizontal */
  gap: 1rem;
}

.social__title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ccc;
  white-space: nowrap;
}

.social__list {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.social__list li {
  list-style: none;
}

.social__link {
  background-color: red;
  width: 2.5rem;             /* largura da bolinha */
  height: 2.5rem;            /* altura da bolinha */
  font-size: 1.2rem;         /* tamanho do ícone */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social__link:hover {
  background-color: darkred; /* cor mais escura ao passar o mouse */
  color: #fff;
}

/* Em tablets e telas médias (≤ 1024px) */
@media (max-width: 1024px) {
  .hero {
    /* Garante escala maior à medida que o container encolhe */
    background-size: clamp(80%, 70vw, 100%);
    background-position: right center;
  }
}

/* Tablets e smartphones (≤ 768px) */
@media (max-width: 768px) {
  .hero {
    background-size: cover;             /* cobre toda a área */
    background-position: center center; /* centraliza o rosto */
    padding: 60px 20px;                 /* reduz espaçamentos */
    min-height: auto;                   /* ou defina um min-height se quiser */
  }
}

/* Smartphones pequenos (≤ 480px) */
@media (max-width: 480px) {
  .hero {
    background-size: cover;
    background-position: center center;
    padding: 40px 10px;
  }
}

/* ===================== SEÇÃO VÍDEO ===================== */
.video-section {
  text-align: center;
  padding: 60px 20px;
  background-image: url('./assets/fundos/fundo1.png'); /* Caminho da sua imagem */
  background-size: cover;         /* Cobre toda a área */
  background-position: center;    /* Centraliza a imagem */
  background-repeat: no-repeat;   /* Evita repetições */
}
.video-container iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
}

.video-section h2 {
  margin-bottom: 30px; /* ou 40px, se quiser mais espaço */
}

.image-container {
  margin-top: 30px; /* espaçamento entre o botão e a imagem */
}

.image-container img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto; /* centraliza a imagem horizontalmente */
}

/* Responsividade para a imagem da seção vídeo */
@media (max-width: 768px) {
  .image-container img {
    max-width: 90%; /* aumenta a largura da imagem no mobile */
  }
}

@media (max-width: 480px) {
  .image-container img {
    max-width: 100%;
  }
}

/* ===================== SEÇÃO PARA QUEM É ===================== */

.para-quem-e {
  text-align: center;
  padding: 60px 20px;
  background-image: url('./assets/fundos/fundo5.png'); /* Caminho da sua imagem */
  background-size: cover;         /* Cobre toda a área */
  background-position: center;    /* Centraliza a imagem */
  background-repeat: no-repeat;   /* Evita repetições */
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: #1a1a1a;
  border-radius: 10px;
  border: 1px solid #333;
  padding: 25px;
  width: 220px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 0 0 transparent;
}
.card:hover,
.card:active {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.card .icon {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .icon svg {
  width: 20px;
  height: 20px;
}
.card h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.4;
  text-align: left;
}
.card i {
  font-size: 2rem;
  color: red;
  margin-bottom: 15px;
}
.mensagem-motivacional {
  margin-top: 50px;
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.mensagem-motivacional strong {
  display: block;
}

/* ===================== SEÇÕES GERAIS: TÍTULOS E SUBTÍTULOS ===================== */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title .subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #ccc;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

.section-title .highlight {
  color: red;
}

.section-title .bold {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .cards {
    justify-content: center;
  }
  .card {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .card {
    width: 90%;
  }
}

.frase-motivacional {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 60px;
  color: #fff;
  position: relative;
}

.frase-motivacional .aspas {
  font-size: 5rem;
  color: red;
  font-family: serif;
  line-height: 0.5;
  margin-bottom: -10px;
}

.frase-motivacional p {
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
}

.frase-motivacional .highlight {
  color: red;
}

.frase-motivacional .autor {
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #aaa;
  margin-top: 15px;
}

/* ===================== SEÇÃO APRENDER ===================== */
.aprender-section {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  background-image: url('./assets/fundos/fundo1.png'); /* Caminho da sua imagem */
  background-size: cover;         /* Cobre toda a área */
  background-position: center;    /* Centraliza a imagem */
  background-repeat: no-repeat;   /* Evita repetições */
}

.aprender-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.aprender-title strong {
  color: #fff;
}

.aprender-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.aprender-item {
  background-color: #111;
  border-radius: 10px;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.3s ease;
}

.aprender-item:hover {
  transform: scale(1.03);
}

.aprender-item .numero {
  color: red;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===================== SEÇÃO SOBRE ===================== */
.sobre {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 60px 20px;
  background-image: url('./assets/fundos/fundo4.png'); /* Caminho da sua imagem */
  background-size: cover;         /* Cobre toda a área */
  background-position: center;    /* Centraliza a imagem */
  background-repeat: no-repeat;   /* Evita repetições */
}
.sobre img {
  max-width: 500px;
  border-radius: 8px;
}
.bio {
  max-width: 500px;
}

/* ===================== SEÇÃO PLANOS ===================== */
.planos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 120px;
  padding: 60px 20px;
  background-image: url('./assets/fundos/fundo3.png'); /* Caminho da sua imagem */
  background-size: cover;         /* Cobre toda a área */
  background-position: center;    /* Centraliza a imagem */
  background-repeat: no-repeat;   /* Evita repetições */
}

.plano-card {
  background: #111;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #444;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
  width: 320px;
}
.plano-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.plano-detalhes p {
  margin: 6px 0;
  font-weight: 500;
}
.plano-detalhes .de {
  text-decoration: line-through;
  color: #bbb;
  font-size: 1rem;
}
.plano-detalhes .por {
  font-size: 0.95rem;
  color: #aaa;
}
.plano-detalhes .preco {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
.plano-detalhes .parcelado {
  color: #ddd;
  font-size: 0.95rem;
}
.livro img {
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

/* ===================== SEÇÃO GARANTIA ===================== */
.garantia-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #000;
}

.garantia-card {
  max-width: 1200px;
  width: 100%;
  background-color: #111111;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.garantia-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.garantia-selo {
  width: 250px;
  max-width: 100%;
}

.garantia-texto {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.garantia-texto h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.garantia-texto p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.garantia-texto .red {
  color: red;
}

.garantia-texto strong {
  color: #ffffff;
  font-weight: 600;
}

.garantia-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  background-color: red;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.garantia-btn:hover {
  background-color: #cc0000;
}

/* Responsivo */
@media (max-width: 768px) {
  .garantia-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .garantia-texto {
    padding: 0;
  }
}

/* ===================== SEÇÃO CONTATO ===================== */
.contato {
  padding: 60px 20px;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
form input, form textarea {
  padding: 10px;
  width: 300px;
  border-radius: 4px;
  border: none;
}
form textarea {
  height: 100px;
}

/* ===================== SEÇÃO DEPOIMENTOS ===================== */
.depoimentos-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #000;
  color: #fff;
  position: relative;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.depoimentos-slider {
  display: flex;
  justify-content: flex-start;    /* alinha à esquerda por padrão */
  gap: 20px;
  overflow-x: auto;               /* habilita swipe no mobile */
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}

@media (min-width: 768px) {
  .depoimentos-slider {
    justify-content: center;     /* centraliza os itens no desktop */
    overflow-x: visible;         /* desativa a rolagem horizontal */
    scroll-snap-type: none;      /* opcional: remove snap se não fizer sentido */
  }
}



.depoimento-item {
  flex: 0 0 auto;
  width: 300px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 15px;
  scroll-snap-align: start;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.08);
  scroll-snap-align: start;
  scroll-snap-stop: always;    /* evita “pular” para outro slide */
}

.depoimentos-slider::-webkit-scrollbar {
  display: none;
}

.depoimento-item iframe,
.depoimento-item .video-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto 10px;
}

/* Linha inferior com comentários */
.depoimentos-comentarios {
  position: relative;
  padding: 0 80px 50px;      /* Aumentado de 20px para 40px nas laterais */
  margin-top: 40px;
  max-width: 1200px;         /* Limita a largura máxima do carrossel */
  margin-left: auto;         /* Centraliza horizontalmente */
  margin-right: auto;
  overflow: hidden;
}

.depoimentos-comentarios .swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Slide container da imagem */
.depoimentos-comentarios .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  max-width: none;        /* permite largura fluida */
  width: 90vw;            /* até 90% da largura da viewport */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-color: transparent;
}

/* Imagem do comentário */
.depoimentos-comentarios .swiper-slide img {
  width: 100%;
  max-height: 90vh;           /* imagem pode ocupar até 80% da altura da tela */
  height: auto;
  object-fit: contain;        /* garante legibilidade sem cortes */
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.2);
  background-color: #111;
  cursor: zoom-in;
}

.swiper-pagination {
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background-color: red;
  opacity: 1;
}

/* ===================== CONTATO ===================== */

.contato {
  background-color: #000; /* fundo escuro */
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.contato h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contato form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background-color: #111;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #333;
}

.contato input,
.contato textarea {
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #1a1a1a;
  color: #fff;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contato input::placeholder,
.contato textarea::placeholder {
  color: #888;
}

.contato input:focus,
.contato textarea:focus {
  border: 1px solid #333;
  box-shadow: 0 0 5px rgba(228, 32, 45, 0.5);
}

.contato textarea {
  min-height: 120px;
  resize: vertical;
}

/* Checkbox */
.checkbox-wrapper {
  text-align: left;
  font-size: 0.95rem;
  color: #ccc;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: #e4202d; /* vermelho */
}

/* Botão */
.contato .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #e4202d;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contato .btn:hover {
  background-color: #ff2a38;
}


/* ===================== SEÇÃO FAQ ===================== */
.faq-section {
  background-color: #000;
  padding: 100px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  background-image: url('./assets/fundos/fundo5.png'); /* Caminho da sua imagem */
  background-size: cover;         /* Cobre toda a área */
  background-position: center;    /* Centraliza a imagem */
  background-repeat: no-repeat;   /* Evita repetições */
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #111;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  position: relative;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #222;
}

.faq-question::after {
  content: '\25BC'; /* seta para baixo */
  font-size: 1rem;
  color: red;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  background-color: #181818;
  color: #ccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 20px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================== SEÇÃO RODAPÉ ===================== */
.footer {
  background-color: #000;
  color: #ccc;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #111;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Herdando estilo das redes sociais */
.footer-social {
  margin-top: 1.2rem;
}

.footer .social__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer .social__link {
  background-color: red;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.2rem;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .social__link:hover {
  background-color: darkred;
  color: #fff;
}

/* ===================== BOTÃO VOLTAR AO TOPO ===================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ff0000;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: #cc0000;
  transform: scale(1.1);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ===== Até tablets (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* -- Seção Vídeo -- */
  .video-section {
    padding: 40px 15px;
  }
  .video-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  /* -- Seção “Para Quem É” -- */
  .para-quem-e {
    padding: 40px 15px;
  }
  .cards {
    gap: 15px;
  }
  .card {
    width: calc(50% - 15px); /* duas colunas */
    padding: 20px;
  }
  .card h4 {
    font-size: 1.1rem;
  }
  .card p {
    font-size: 0.9rem;
  }
  .mensagem-motivacional {
    font-size: 1.1rem;
    margin-top: 40px;
  }
}

/* ===== Até smartphones (max-width: 480px) ===== */
@media (max-width: 480px) {
  /* -- Seção Vídeo -- */
  .video-section {
    padding: 30px 10px;
  }
  .video-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .video-container iframe {
    aspect-ratio: 16/9;
  }

/* Seção “Para Quem É” – Responsividade aprimorada */
@media (max-width: 768px) {
  .para-quem-e {
    padding: 40px 30px;  /* mais espaçamento lateral */
  }
  .cards {
    gap: 20px;
  }
  .card {
    width: calc(50% - 20px); /* duas colunas com gap de 20px */
    max-width: 240px;        /* limita a largura máxima */
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .para-quem-e {
    padding: 30px 20px;  /* mais espaços nas laterais */
  }
  .cards {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    width: auto;          /* usa max-width */
    max-width: 300px;     /* controla largura do card */
    margin: 0 auto;       /* centraliza */
    padding: 18px;
  }
}}

@media (max-width: 768px) {
  /* Seção Aprender */
  .aprender-section {
    padding: 60px 15px;
  }
  .aprender-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .aprender-grid {
    gap: 15px;
    max-width: 100%;
    margin: 0 10px;
  }
  .aprender-item {
    padding: 18px;
    font-size: 0.95rem;
  }
  .aprender-item .numero {
    font-size: 1rem;
  }

  /* Seção Sobre */
  .sobre {
    flex-direction: column;
    gap: 40px;
    padding: 50px 15px;
  }
  .sobre img {
    max-width: 90%;
  }
  .bio {
    max-width: 90%;
    text-align: center;
  }

  /* Seção Planos */
  .planos {
    gap: 60px;
    padding: 50px 15px;
  }
  .plano-card {
    width: calc(50% - 30px);
    padding: 30px 20px;
  }
  .plano-card h3 {
    font-size: 1.3rem;
  }
  .plano-detalhes .preco {
    font-size: 1.4rem;
  }
  .livro img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  /* Seção Aprender */
  .aprender-section {
    padding: 40px 10px;
  }
  .aprender-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .aprender-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 5px;
  }
  .aprender-item {
    padding: 15px;
    font-size: 0.9rem;
  }

  /* Seção Sobre */
  .sobre {
    padding: 40px 10px;
  }
  .sobre img {
    max-width: 100%;
  }
  .bio {
    max-width: 100%;
    padding: 0 10px;
  }

  /* Seção Planos */
  .planos {
    flex-direction: column;
    gap: 40px;
    padding: 40px 10px;
  }
  .plano-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 25px 15px;
  }
  .plano-card h3 {
    font-size: 1.2rem;
  }
  .plano-detalhes .preco {
    font-size: 1.2rem;
  }
  .livro img {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* ===== Seção Garantia ===== */
  .garantia-section {
    padding: 40px 15px;
  }
  .garantia-card {
    padding: 30px;
    max-width: 600px;           /* Limita a largura total */
    margin: 0 auto;             /* Centraliza no container */
  }
  .garantia-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .garantia-selo {
    width: 200px;               /* Imagem menor */
  }
  .garantia-texto h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .garantia-texto p {
    font-size: 0.9rem;
  }
  .garantia-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* ===== Seção Contato ===== */
  .contato form {
    gap: 12px;
  }
  .contato form input,
  .contato form textarea {
    width: 100%;
    max-width: 400px;           /* Nunca ultrapassa 400px */
  }

  /* ===== Seção Depoimentos ===== */
  .depoimentos-section {
    padding: 60px 15px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .depoimentos-slider {
    gap: 15px;
    padding-bottom: 15px;
  }
  .depoimento-item {
    width: 260px;               /* Cards menores */
  }
  .depoimentos-comentarios {
    padding: 0 40px 30px;
    max-width: 100%;
  }
  .depoimentos-comentarios .swiper-slide {
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  /* ===== Seção Garantia ===== */
  .garantia-section {
    padding: 30px 10px;
  }
  .garantia-card {
    padding: 20px;
  }
  .garantia-selo {
    width: 150px;
  }
  .garantia-texto h2 {
    font-size: 1.4rem;
  }
  .garantia-texto p {
    font-size: 0.85rem;
  }
  .garantia-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* ===== Seção Contato ===== */
  .contato {
    padding: 40px 10px;
  }
  .contato form input,
  .contato form textarea {
    max-width: 100%;
  }

  /* ===== Seção Depoimentos ===== */
  .depoimentos-section {
    padding: 50px 10px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  .depoimentos-slider {
    gap: 10px;
  }
  .depoimento-item {
    width: 90vw;                /* ocupa 90% da largura da tela */
    max-width: 300px;
  }
  .depoimentos-comentarios {
    padding: 0 20px 20px;
  }
  .depoimentos-comentarios .swiper-slide {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* ===== Seção Contato ===== */
  .contato {
    padding: 40px 15px;
  }
  .contato h3 {
    font-size: 1.8rem;
  }
  .contato form {
    padding: 1.5rem;
    gap: 1rem;
  }
  .contato input,
  .contato textarea {
    width: 100%;
    max-width: none;
  }
  .contato textarea {
    min-height: 100px;
  }
  .checkbox-wrapper {
    font-size: 0.9rem;
  }
  .contato .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* ===== Seção FAQ ===== */
  .faq-section {
    padding: 80px 15px;
  }
  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .faq-container {
    gap: 12px;
    margin: 0 10px;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 14px 16px;
  }
  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  /* ===== Seção Contato ===== */
  .contato {
    padding: 30px 10px;
  }
  .contato h3 {
    font-size: 1.6rem;
  }
  .contato form {
    padding: 1rem;
    gap: 0.8rem;
  }
  .contato input,
  .contato textarea {
    width: 100%;
  }
  .contato textarea {
    min-height: 80px;
  }
  .checkbox-wrapper {
    font-size: 0.85rem;
  }
  .contato .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }


  /* ===== Seção FAQ ===== */
  .faq-section {
    padding: 60px 10px;
  }
  .faq-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .faq-container {
    gap: 10px;
    margin: 0 5px;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
  .faq-answer p {
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 14px 0;
  }
}

@media (max-width: 768px) {
  /* Rodapé */
  .footer {
    padding: 1.5rem 0;
  }
  .footer-container {
    padding: 0 15px;
  }
  .footer p {
    font-size: 0.9rem;
  }
  .footer .social__list {
    gap: 0.8rem;
    margin-top: 0.8rem;
  }
  .footer .social__link {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
  }

  /* Botão “Voltar ao Topo” */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  /* Rodapé */
  .footer {
    padding: 1rem 0;
  }
  .footer-container {
    padding: 0 10px;
  }
  .footer p {
    font-size: 0.85rem;
  }
  .footer .social__list {
    gap: 0.6rem;
    margin-top: 0.6rem;
  }
  .footer .social__link {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  /* Botão “Voltar ao Topo” */
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
}

/* ===================== SEÇÃO DEPOIMENTOS ===================== */
.depoimentos-section {
  display: flex;
  flex-direction: column;
}
.depoimentos-slider {
  flex: none;
}
.depoimentos-comentarios {
  flex: none;
  width: 100%;
  margin-top: 40px;
  clear: both;
  display: block;
}
