/* === BASE === */
:root {
  --azul-principal: #146C94;
  --amarelo-destaque: #F4B400;
  --laranja-vivo: #F25C05;
  --verde-menta: #2AC4A3;
  --roxo-suave: #6B3FA0;
  --fundo-claro: #FFF8ED;
  --texto-principal: #222222;
}

/* ==== Fredoka ==== */

/* Fredoka Medium – weight 500 */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Fredoka-Medium.woff2') format('woff2');
}

/* Fredoka SemiBold – weight 600 */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Fredoka-SemiBold.woff2') format('woff2');
}

/* Fredoka Bold – weight 700 */
@font-face {
  font-family: 'Fredoka';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Fredoka-Bold.woff2') format('woff2');
}

/* ==== Nunito ==== */

/* Nunito Regular – weight 400 */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Nunito-Regular.woff2') format('woff2');
}

/* Nunito SemiBold – weight 600 */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Nunito-SemiBold.woff2') format('woff2');
}


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

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--fundo-claro);
  color: var(--texto-principal);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  color: var(--azul-principal);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.logotipo {
    width: 15rem;
    display: flex;
    margin: 0 auto;
}

/* === HEADER === */
header {
  background-color: var(--azul-principal);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.headline {
  font-size: 2.5rem;
  color: #ffc900;
  margin-bottom: 1rem;
  font-weight: 600;
}

.subheadline {
    color: var(--verde-menta);
    font-weight: 500;
}

.subheadline .destaque-texto {
  color: #1bfc06;
  font-size: 1.5rem;
}

.destaque-texto {
    color: #1bfc06;
    text-shadow:
     0 1px 0 rgba(0,0,0,0.2),            /* sombra sutil abaixo */
     0 2px 4px rgba(0,0,0,0.15);          /* glow suave */
}

header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 480px) {
  header {
    padding: 2rem 1rem;
  }

  .headline {
    font-size: 2.5rem;
    line-height: 1.4;
    padding: 0 0.5rem;
  }

  header p {
    font-size: 1.25rem;
    max-width: 100%;
    padding: 0 0.5rem;
    line-height: 1.5;
  }

  .subheadline {
    font-size: 1.5rem;
  }

  .destaque-texto {
    font-size: 2.5rem;
  }
}

.cta-button {
  background-color: var(--amarelo-destaque);
  color: var(--azul-principal);
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  
}

.cta-topo {
  background-color: #C4E538;
  color: #006266
}

.cta-button:hover {
  background-color: var(--laranja-vivo);
  color: white;
}

.btn-mid-page {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.btn-mid-page .cta-button {
  background-color: var(--laranja-vivo);
  color: white;
}

/* === SECTION === */
section {
  max-width: 1000px;
  margin: auto;
}

.titulo-secao {
    margin: 1rem 0 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 2.0rem;
}

.oferta-box {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 2rem 2.5rem;
  max-width: 600px;
  margin: 0 auto;
}


#pacote-atividades {
  text-align: center;
  padding: 2rem 1rem 0;
}

#pacote-atividades .titulo-secao {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--azul-principal);
}

#pacote-atividades .imagens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

#pacote-atividades .imagens img {
  max-width: 100%;
  height: auto;
  width: 380px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

#pacote-atividades p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--texto-principal);
}

#oferta {
  background-color: var(--fundo-claro);
  padding: 2rem 1rem 0;
  text-align: center;
}

#oferta .titulo-secao {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--azul-principal);
  margin-bottom: 2rem;
}

.beneficios-svg {
  list-style: none;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  color: var(--texto-principal);
}

.beneficios-svg li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.check-icon {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex-shrink: 0;
}

.check-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.preco-box {
  margin-bottom: 1.5rem;
  font-family: 'Fredoka', sans-serif;
  color: var(--azul-principal);
}

.preco-antigo {
  color: #e74c3c;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.preco-parcelado {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.preco-parcelado .valor {
  color: #2ecc71;
  font-weight: 600;
}

.preco-avista {
  font-size: 1.1rem;
  color: var(--texto-principal);
  margin-bottom: 0.5rem;
}

.urgencia {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--verde-menta);
  margin-bottom: 1rem;
}

.urgencia-area-membros {
  color: var(--laranja-vivo);
}

.member-header .cta-button:hover {
  background-color: #C4E538;
  color: #006266
}

.botao-oferta {
    display: inline-block;
    text-decoration: none;
    background-color: #16a085;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.5rem;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.botao-oferta:hover {
  background: linear-gradient(to right, #146C94, #6B3FA0);
  transform: scale(1.02);
}


.disponibilidade {
  margin: 1rem 0;
}

.disponibilidade p {
  font-family: 'Fredoka', sans-serif;
  color: var(--azul-principal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.barra-disponibilidade {
  background-color: #eee;
  border-radius: 999px;
  overflow: hidden;
  height: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.progresso {
  background-color: #e74c3c;
  color: #fff;
  text-align: center;
  font-weight: bold;
  height: 100%;
  border-radius: 999px 0 0 999px;
  line-height: 24px;
}

#beneficios {
  padding: 3rem 1rem;
  text-align: center;
  background-color: #fff;
}

.beneficios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.card-beneficio {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  width: 150px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card-beneficio:hover {
  transform: translateY(-5px);
}

.card-beneficio img {
  width: 5rem;
  margin-bottom: 0.75rem;
}

.card-beneficio p {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--texto-principal);
  margin: 0;
}

  /* Depoimentos */
#depoimentos {
  padding: 3rem 1rem 0;
  max-width: 800px;
  margin: auto;
}

#depoimentos .titulo-secao {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--azul-principal);
  margin-bottom: 2rem;
}

.comentario {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.thumb img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.conteudo {
  flex: 1;
}

.nome {
  font-weight: 700;
  color: #4267B2;
  font-family: 'Nunito', sans-serif;
  display: block;
  margin-bottom: 0.25rem;
}

.conteudo p {
  font-family: 'Nunito', sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--texto-principal);
}

.interacoes {
  font-size: 0.875rem;
  color: #555;
  font-family: 'Nunito', sans-serif;
}

.interacoes span {
  margin-right: 0.3rem;
}

.interacoes img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}

#faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0rem 1rem;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-question {
  background: #f4f4f4;
  border: none;
  width: 100%;
  padding: 1rem;
  text-align: left;
  font-size: 1.1rem;
  font-family: 'Fredoka', sans-serif;
  color: var(--azul-principal);
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question.open {
  background: var(--azul-principal);
  color: white;
}

.faq-answer {
  display: none;
  padding: 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--texto-principal);
  background: #fff;
}

.faq-answer.active {
  display: block;
}

#sobre {
  padding: 1rem 1rem 0;
  background-color: #FFF8ED;
  color: var(--texto-principal);
  font-family: 'Nunito', sans-serif;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.sobre-texto {
  flex: 1 1 100%;
  font-size: 1.05rem;
  line-height: 1.7;
}

.sobre-texto strong {
  color: var(--azul-principal);
}

#garantia {
  padding: 1rem 1rem;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  color: var(--texto-principal);
}

.garantia-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.garantia-texto {
  max-width: 600px;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.7;
}

.garantia-texto strong {
  color: var(--laranja-vivo);
}

/* === FOOTER === */
footer {
  background-color: var(--azul-principal);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
  font-family: 'Nunito', sans-serif;
}

/* === Login Page === */
#login {
  max-width: 400px;
  margin: 2rem auto;
  padding: 1rem;
}

.login-group {
  margin-bottom: 1rem;
}

.login-group:last-of-type {
  margin-bottom: 1.5rem;
}

.login-label {
  display: block;
  font-weight: 600;
  color: var(--azul-principal);
  margin-bottom: 0.5rem;
}

.login-input {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* === 1. Container Geral === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === 2. Cabeçalho da Área de Membros === */
.member-header {
  background: var(--fundo-claro);
  padding: 2rem 0;
  text-align: center;
  position: relative;
}
.member-nav {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}
.member-header .logotipo {
  max-width: 180px;
  margin-bottom: 1rem;
}

/* === 3. Galeria de Arquivos === */
.file-gallery {
  padding: 2rem 0;
}
.file-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* === 4. Cartões de Arquivo === */
.file-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.file-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* === 5. Thumbnails === */
.file-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* === 6. Informações e Botão === */
.file-info {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.file-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--azul-principal);
  text-align: center;
}
.file-actions {
  text-align: center;
}
.btn-download {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--verde-menta);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-download:hover {
  background: var(--azul-principal);
}

/* === 7. Footer === */
.site-footer {
  background: var(--fundo-claro);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #555;
}

/* === 8. Adaptividade === */
@media (max-width: 768px) {
  .file-thumb { height: 150px; }
}
@media (max-width: 480px) {
  .file-gallery-container {
    grid-template-columns: 1fr;
  }
  .file-thumb { height: 200px; }

  .btn-download {
  width: 15rem;
  font-size: 1.5rem;
}
}

/* === Seção Orderbump Jesus === */
.orderbump-section {
  margin-top: 0;
  padding: 1rem 0;
}
.orderbump-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--fundo-claro);
  margin-bottom: 1.5rem;
}

.mensagem-alerta {
  padding: 0 1rem 0 1rem;
  text-align: center;
}
.flash-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.flash-danger {
  color: #b00020;
  font-weight: 600;
}

/* ===== Locked state: capa + botão centralizados ===== */
.orderbump-section.locked {
  text-align: center;
  padding: 2rem 0;
}

.orderbump-section.locked .orderbump-cover img {
  max-width: 300px;      /* ajuste ao tamanho desejado */
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.orderbump-section.locked .btn-unlock {
  display: inline-block;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.5rem;
  background-color: #4cd137;
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
  font-weight: 600;
}



