/*!
 * Projeto: Domine a Aprovação para Concursos Públicos
 * Desenvolvido por: KLIF Media Marketing Digital e Internet
 * Site: https://www.klifmedia.com.br
 * Data: abril de 2025
 *
 * Todas as estratégias e códigos aqui utilizados foram implementados
 * pela equipe da KLIF Media Marketing Digital e Internet.
 */


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  /* CONTAINER CENTRALIZADO */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* CABEÇALHO */
  .header {
    background: white;
    border-bottom: 1px solid #C2AEBD;
  }
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  .logo img {
    width: 100px;
  }
  .nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .nav a {
    text-decoration: none;
    color: #9B7791;
    font-size: 1rem;
    font-weight: 700;
  }
  .btn-contato {
    background: #E44873;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
  }
  
  /* HOME */
  .home {
    padding: 2rem 0;
    background: #f9f9f9;
  }
  .home-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  .home-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
  }
  .home-content {
    flex: 1;
  }
  .highlight {
    color: #E44873;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .home-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin: 0.5rem 0;
  }
  .home-content p {
    margin-bottom: 1.5rem;
  }
  .btn {
    display: inline-block;
    background: #E44873;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
  }
  .btn:hover {
    background: #ff5a8c;
  }
  
  /* PRONTO */
  .pronto {
    padding: 2rem 0;
    background: #C2AEBD;
    color: white;
    text-align: center;
  }
  
  .pronto .container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    gap: 1rem;
  }
  
  .pronto-text h2 {
    font-size: 3rem;
    line-height: 1.2; 
    margin-bottom: 0.5rem;
    color: #F60808;
  }
  
  .pronto-text p {
    font-size: 1rem;
    max-width: 600px;  /* limite de largura para o texto */
    margin: 0 auto 1rem auto;
  }
  
  .pronto-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
  }
  
  
  /* APRENDER */
  .aprender {
    padding: 2rem 0;
    background: linear-gradient(180deg, white 51%, #9B7791 100%);
    text-align: center;
  }
  .aprender h2 {
    font-size: 3rem;
    color: #9B7791;
    margin-bottom: 1rem;
  }
  .aprender-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colunas no desktop */
    gap: 2rem; /* espaçamento entre os itens */
    text-align: center; /* centraliza o texto de cada item */
  }
  
  /* Empilha no mobile */
  @media (max-width: 768px) {
    .aprender-grid {
      grid-template-columns: 1fr; /* todos em uma única coluna */
    }
  }
  
  .aprender-item img {
    width: 80px;
    margin-bottom: 0.5rem;
  }
  .aprender-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  .aprender-item p {
    font-size: 0.95rem;
    color: #555;
  }
  .btn-aprender {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  /* VALOR */
  .valor {
    padding: 2rem 0;
    background: white;
    text-align: center;
  }
  .valor-container .valor-banner p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .valor-container .valor-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .valor-oferta {
    background: #f1f1f1;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .oferta-text p {
    font-size: 1rem;
    color: #333;
  }
  .oferta-preco p {
    font-size: 2rem;
    font-weight: 700;
    color: #E44873;
  }
  .oferta-chamada {
    margin: 1rem 0;
    font-size: 1rem;
  }
  .valor .btn {
    padding: 0.75rem 1.5rem;
  }
  
  /* SELOS */
  .selos {
    padding: 2rem 0;
    background: #C2AEBD;
  }
  .selos-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  .selos-container img {
    width: 280px;
    height: auto;
    border-radius: 50%;
  }
  
  /* DRA FABIANA */
  .dra-fab {
    padding: 2rem 0;
    background: white;
  }
  .dra-fab .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  .dra-fab-text {
    flex: 1;
  }
  .dra-fab-text h2 {
    font-size: 2rem;
    color: #9B7791;
    margin-bottom: 1rem;
  }
  .dra-fab-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
  }
  .dra-fab-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
  }
  .dra-fab-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .dra-fab-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
  
  /* PARA QUEM */
  .para-quem {
    padding: 2rem 0;
    background: #9B7791;
    color: white;
    text-align: center;
  }
  .para-quem h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .para-quem .metodo {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .para-quem h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .publico {
    list-style: none;
    margin-bottom: 1.5rem;
  }
  .publico li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .publico li img {
    width: 20px;
  }
  .para-quem .btn {
    padding: 0.75rem 1.5rem;
  }
  
  /* DEPOIMENTOS */
  .depoimentos {
    padding: 2rem 0;
    background: #f9f9f9;
    text-align: center;
  }
  .depoimentos h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .depoimento {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .depoimento-texto {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #333;
  }
  .depoimento-nome {
    font-weight: bold;
    font-size: 1rem;
    color: #9B7791;
  }
  
  /* FAQ */
  .faq {
    padding: 2rem 0;
    background: white;
    text-align: center;
  }
  .faq h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #9B7791;
  }
  .faq-item {
    margin-bottom: 1rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
  }
  .faq-item p {
    font-size: 1rem;
    color: #555;
  }
  
  /* RODAPÉ */
  .footer {
    background: #9B7791;
    color: white;
    padding: 2rem 0;
  }
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-logo img {
    width: 100px;
  }
  .footer-social a img {
    width: 24px;
  }
  .footer-contact span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  .footer-links a {
    display: block;
    font-size: 0.95rem;
    text-decoration: underline;
  }
  
  /* MEDIA QUERIES */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
    }
    .nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .home-container, 
    .pronto .container,
    .dra-fab .container,
    .footer-container {
      flex-direction: column;
    }
    .depoimentos-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Seção Valor (Oferta) */
.valor {
    position: relative;
    background: #fff;
    text-align: center;
    padding: 2rem 0;
  }
  
  /* Conteúdo principal da oferta */
  .valor-container {
    /* Já deve existir em seu layout algo como: 
       max-width: 1200px; margin: 0 auto; etc. */
  }
  
  /* Barra vermelha piscando */
  .barra-oferta {
    width: 100%;               /* 100% da tela, sem causar rolagem */
    background: #F60808;       /* vermelho */
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-weight: 700;
    animation: pisca 1.5s infinite alternate; /* animação de piscar */
  }
  
  /* Animação de piscar */
  @keyframes pisca {
    0%   { opacity: 1; }
    50%  { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* remove qualquer rolagem horizontal */
  }
  
  /* Sessão Dra Fabiana */
.dra-fab {
    padding: 2rem 0;
    background: white;
  }
  
  .dra-fab .container {
    display: flex;
    flex-wrap: wrap;    /* permite que os itens quebrem linha em telas menores */
    align-items: center;
    gap: 2rem;
  }
  
  /* Coluna de texto */
  .dra-fab-text {
    flex: 1;            /* ocupa espaço para ficar ao lado da imagem */
    min-width: 280px;   /* evita que fique muito estreito */
  }
  
  .dra-fab-text h2 {
    font-size: 3rem;
    line-height: 1.2; 
    color: #9B7791;
    margin-bottom: 1rem;
  }
  
  .dra-fab-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .dra-fab-list {
    list-style: none;
    margin-bottom: 1rem;
    padding: 0;
  }
  
  .dra-fab-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  /* Coluna da imagem */
  .dra-fab-image {
    flex: 1;
    text-align: center; /* caso queira a imagem centralizada na coluna */
    min-width: 280px;
  }
  
  .dra-fab-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
  
  /* Botão em nova linha e centralizado */
  .dra-fab-button {
    width: 100%;
    text-align: center;
  }
  
  .btn-dra-fab {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;   /* botão maior */
    font-size: 1.2rem;    /* texto maior */
    background: #E44873;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
  }
  
  .btn-dra-fab:hover {
    background: #ff5a8c;
  }
  
  /* Responsividade adicional (caso queira empilhar texto e imagem em telas pequenas) */
  @media (max-width: 768px) {
    .dra-fab .container {
      flex-direction: column; 
      text-align: center; 
    }
    .dra-fab-text, .dra-fab-image {
      flex: none;
      width: 100%;
    }
    .dra-fab-text p {
      text-align: center;
    }
  }
  
  /* Footer principal (roxo) */
.footer {
    background: #9B7791;
    color: white;
    padding: 2rem 0;
    margin: 0;  /* remove possíveis margens extras */
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Logo principal */
  .footer-logo img {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* Redes Sociais */
  .footer-social {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-social h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .social-icons {
    display: flex;
    justify-content: center; 
    gap: 1rem;
  }
  
  .social-icons a img {
    /* Mantém proporção e define um máximo */
    height: 24px;
    width: auto;
  }
  
  /* Contato */
  .footer-contact {
    flex: 1;
    min-width: 200px;
    text-align: center;
  }
  
  .footer-contact span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .footer-contact img {
    width: 20px;
    height: auto;
    margin-right: 5px;
  }
  
  /* Links */
  .footer-links {
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a {
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* Tarja preta */
  .footer-credit {
    background: #000;        /* fundo preto */
    text-align: center;
    padding: 1rem 0;
    margin: 0;               /* sem margens extras */
  }
  
  .footer-credit a img {
    /* Aumenta a imagem da KlifMedia */
    width: 230px;  
    height: auto;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  }
  .footer-contact span {
    display: inline-flex;    /* ou flex */
    align-items: center;     /* alinha ícone e texto verticalmente */
    gap: 0.5rem;             /* espaço entre ícone e texto */
  }
  
  .footer-contact img {
    width: 20px;  /* ajuste conforme necessário */
    height: 20px; /* mantém proporção */
    vertical-align: middle; /* opcional, ajuda no alinhamento se for inline */
  }

  /* Container do cabeçalho */
.header {
    background: white;
    border-bottom: 1px solid #C2AEBD;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Ajuste a largura se quiser menos margem lateral */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /* Reduza o padding vertical para aproximar os itens verticalmente */
    padding: 0.5rem 0;
    gap: 1rem; /* Espaçamento horizontal entre logo, nav e botão */
  }
  
  /* Logo maior */
  .header-container .logo img {
    width: 115px;  /* aumente conforme desejar */
    height: auto;
    display: block;
  }
  
  /* Menu */
  .nav ul {
    list-style: none;
    display: flex;
    /* Maior espaçamento entre os links */
    gap: 9rem;
    margin: 0;
    padding: 0;
  }
  
  /* Links do menu */
  .nav ul li a {
    text-decoration: none;
    color: #9B7791;
    font-size: 1.1rem;  /* letras um pouco maiores */
    font-weight: 700;
  }
  
  /* Botão de contato maior */
  .btn-contato {
    background: #E44873;
    color: #fff;
    /* Maior padding para o botão ficar mais evidente */
    padding: 0.75rem 3.5rem; 
    border-radius: 12px;
    font-size: 1.1rem;  /* texto maior */
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
  }
  
  /* Exemplo de ajuste responsivo (opcional) */
  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      gap: 1rem;
    }
    .nav ul {
      flex-direction: column;
      gap: 1rem;
    }
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /* Reduzimos para 0.5rem (ou até 0) para aproximar menu do logo e botão */
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  
  .nav ul {
    list-style: none;
    display: flex;
    /* Aumentamos o gap para dar mais espaço entre os links */
    gap: 7rem;
    margin: 0;
    padding: 0;
  }
  
  .valor {
    padding: 2rem 0;
    background: #fff;
    text-align: center;
  }
  
  .valor-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Banner (título da oferta) */
  .valor-banner {
    margin-bottom: 2rem;
  }
  
  .valor-banner p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .valor-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* Bloco de oferta */
  .valor-oferta {
    background: #f1f1f1;        /* fundo levemente cinza */
    padding: 2rem;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;           /* largura máxima para destaque */
  }
  
  /* Texto “Curso Completo por Apenas” bem grande */
  .oferta-text {
    font-size: 2rem;            /* destaque */
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  
  /* Preço */
  .oferta-preco {
    margin-bottom: 1.5rem;
  }
  
  /* Preço antigo riscado */
  .preco-antigo {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
  }
  
  /* Preço atual em destaque */
  .preco-atual {
    font-size: 3rem;            /* bem grande */
    color: #E44873;             /* vermelho-rosa forte */
    font-weight: 900;
  }
  
  /* Chamada abaixo dos preços */
  .oferta-chamada {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #555;
  }
  
  /* Botão de compra bem chamativo */
  .btn-compra {
    display: inline-block;
    background: #E44873;
    color: #fff;
    font-size: 1.2rem;          /* texto maior */
    font-weight: 700;
    padding: 1rem 2rem;         /* botão grande */
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-compra:hover {
    background: #ff5a8c;
  }
  
  /* Seção com fundo personalizado e conteúdo centralizado */
.imagem-centralizada {
    /* Escolha a cor de fundo ou até mesmo uma imagem de fundo */
    background: #f9f9f9; /* Exemplo de cor de fundo clara */
    /* Você também pode usar background-image se quiser um fundo com imagem */
    /* background-image: url('img/seu_fundo.jpg'); */
    /* background-size: cover; background-position: center; */
    padding: 2rem 0; 
    text-align: center; /* Centraliza o texto e a imagem no eixo horizontal */
  }
  
  /* Container para limitar a largura do conteúdo e centralizar */
  .imagem-centralizada-container {
    width: 90%;
    max-width: 600px;  /* Ajuste conforme necessário */
    margin: 0 auto;    /* Centraliza horizontalmente */
  }
  
  .valor {
    padding: 2rem 0;
    background: #fff;
    text-align: center;
  }
  
  .valor-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Banner (título da oferta) */
  .valor-banner {
    margin-bottom: 2rem;
  }
  
  .valor-banner p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .valor-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* Bloco de oferta */
  .valor-oferta {
    background: #f1f1f1;        /* fundo levemente cinza */
    padding: 2rem;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;           /* largura máxima para destaque */
  }
  
  /* Texto “Curso Completo por Apenas” bem grande */
  .oferta-text {
    font-size: 2rem;            /* destaque */
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  
  /* Preço */
  .oferta-preco {
    margin-bottom: 1.5rem;
  }
  
  /* Preço antigo riscado */
  .preco-antigo {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
  }
  
  /* Preço atual em destaque */
  .preco-atual {
    font-size: 3rem;            /* bem grande */
    color: #E44873;             /* vermelho-rosa forte */
    font-weight: 900;
  }
  
  /* Chamada abaixo dos preços */
  .oferta-chamada {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #555;
  }
  
  /* Botão de compra bem chamativo */
  .btn-compra {
    display: inline-block;
    background: #E44873;
    color: #fff;
    font-size: 1.2rem;          /* texto maior */
    font-weight: 700;
    padding: 1rem 2rem;         /* botão grande */
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-compra:hover {
    background: #ff5a8c;
  }
  

  .valor {
    padding: 2rem 0;
    background: #fff;
    text-align: center;
  }
  
  .valor-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Banner de título */
  .valor-banner p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .valor-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* Tarja vermelha piscando */
  .barra-oferta {
    width: 100%;
    background: #F60808;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-weight: 700;
    animation: pisca 1.5s infinite alternate;
    margin-bottom: 1.5rem;
  }
  
  @keyframes pisca {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
  /* Bloco de oferta */
  .valor-oferta {
    background: #f1f1f1;
    padding: 2rem;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;
  }
  
  .oferta-text {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  
  .oferta-preco {
    margin-bottom: 1.5rem;
  }
  
  .preco-antigo {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
  }
  
  .preco-atual {
    font-size: 3rem;
    color: #E44873;
    font-weight: 900;
  }
  
  .oferta-chamada {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #555;
  }
  
  .btn-compra {
    display: inline-block;
    background: #E44873;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-compra:hover {
    background: #ff5a8c;
  }
  .barra-oferta {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* Garante que fique centralizada em relação à tela */
    background: #F60808;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-weight: 700;
    animation: pisca 1.5s infinite alternate;
    margin-bottom: 1.5rem;
  }
  
  @keyframes pisca {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
    
  .valor {
    padding: 2rem 0;
    background: #fff;
    text-align: center;
  }
  
  .valor-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Banner principal (se já existe) */
  .valor-banner p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .valor-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  /* Bloco de oferta com fundo cinza */
  .valor-oferta {
    background: #f1f1f1;      /* fundo cinza claro */
    padding: 2rem;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
  }
  
  /* Imagem dentro do bloco de oferta */
  .oferta-imagem {
    width: 100%;
    max-width: 400px;         /* Ajuste conforme necessário */
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;    /* Espaço abaixo da imagem */
    border-radius: 10px;      /* Opcional, se quiser bordas arredondadas */
  }
  
  /* Título do bloco (CURSO COMPLETO POR APENAS) */
  .oferta-text {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  
  /* Preço antigo e atual */
  .oferta-preco {
    margin-bottom: 1.5rem;
  }
  
  .preco-antigo {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
  }
  
  .preco-atual {
    font-size: 3rem;
    color: #E44873;
    font-weight: 900;
  }
  
  /* Chamada e botão */
  .oferta-chamada {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: #555;
  }
  
  .btn-compra {
    display: inline-block;
    background: #E44873;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn-compra:hover {
    background: #ff5a8c;
  }
  
/* Contador - Container Geral */
.contador-oferta {
  text-align: center;
  margin-top: 2rem;      /* Espaço acima */
  margin-bottom: 2rem;   /* Espaço igual embaixo */
}


/* Título acima do contador */
.contador-titulo {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

/* Display do contador */
.contador-display {
  display: inline-flex; /* para agrupar as "caixas" em linha */
  align-items: center;
  gap: 0.5rem; /* espaço entre caixas e separadores */
}

/* Caixas pretas com dígitos */
.contador-box {
  background: #000;    /* fundo preto */
  color: #fff;         /* texto branco */
  font-size: 1.5rem;   /* tamanho do texto */
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 50px;     /* largura mínima para manter formato de caixa */
  text-align: center;
}

/* Separador (dois-pontos) */
.contador-separador {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000; /* ou #333, conforme design */
}

.contador-oferta {
  text-align: center;
  margin-top: 2rem; /* Aumenta o espaço acima */
}

.contador-titulo {
  font-size: 2rem;   /* Título maior */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.contador-display {
  display: inline-flex;
  align-items: center;
  gap: 1rem;         /* Espaço maior entre as caixas */
}

.contador-box {
  background: #000;     /* Fundo preto */
  color: #fff;          /* Texto branco */
  font-size: 2.5rem;    /* Fonte bem grande */
  font-weight: 700;
  padding: 1rem 2rem;   /* Caixas maiores */
  border-radius: 8px;
  min-width: 70px;      /* Largura mínima maior para manter o formato de caixa */
  text-align: center;
}

.contador-separador {
  font-size: 2.5rem;    /* Separador no mesmo tamanho das caixas */
  font-weight: 700;
  color: #000;          /* Cor do separador (dois-pontos) */
}

html {
  scroll-behavior: smooth;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8); /* Fundo branco com 80% de opacidade */
  backdrop-filter: blur(10px);          /* Aplica desfoque no fundo */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

/* Estilos básicos para o header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Menu e itens */
.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  text-decoration: none;
  color: #9B7791;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 1rem;
}

/* Ícone do menu hambúrguer: oculto no desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

/* Cada linha do hambúrguer */
.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 4px rgba(0,0,0,0.2);
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }
}
/* Estilos gerais do header (desktop) */
.header {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* No mobile, desabilitamos o sticky */
@media (max-width: 768px) {
  .header {
    position: relative;
  }
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout desktop: logo, nav e contato em uma linha */
@media (min-width: 769px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Exibe nav e botão de contato normalmente no desktop */
  .nav {
    display: block;
  }
  .contact-row {
    display: none;
  }
  .menu-toggle {
    display: none;
  }
}

/* Layout mobile: até 768px */
@media (max-width: 768px) {
  /* Top row: logo e hambúrguer */
  .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Exibe o ícone hamburger */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
    display: block;
  }
  /* Botão de contato em uma linha separada */
  .contact-row {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }
  /* Menu (nav) inicialmente oculto */
  .nav {
    display: none;
  }
  /* Quando ativo, o menu aparece em bloco */
  .nav.active {
    display: block;
    margin-top: 1rem;
  }
  /* Exibe o menu em formato vertical */
  .nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .nav ul li a {
    text-decoration: none;
    color: #9B7791;
    font-size: 1.1rem;
    font-weight: 700;
  }
}

/* Logo e botão (válidos para ambos) */
.logo img {
  width: 120px;
  height: auto;
}

.btn-contato {
  background: #E44873;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
}

/* Força a remoção do sticky no mobile */
@media (max-width: 768px) {
  .header {
    position: static !important;
    top: auto !important;
  }
}

/* ------ HEADER GERAL ------ */
.header {
  background: #fff;
  padding: 0.5rem 0;
  /* se quiser sticky no desktop */
  position: sticky; 
  top: 0;
  z-index: 1000;
}

/* Remove sticky no mobile */
@media (max-width: 768px) {
  .header {
    position: static !important;
    top: auto !important;
  }
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ------ DESKTOP (min-width: 769px) ------ */
@media (min-width: 769px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-toggle {
    display: none;
  }
  .nav {
    display: block; /* Menu visível no desktop */
  }
  .contact-row {
    display: none;  /* Se quiser esconder o botão contato no desktop */
  }
}

/* ------ MOBILE (max-width: 768px) ------ */
@media (max-width: 768px) {
  .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .hamburger {
    width: 25px;
    height: 3px;
    background-color: #333;
  }
  
  /* Botão de contato no mobile */
  .contact-row {
    text-align: center;
    margin-top: 0.5rem;
  }
  
  /* Menu inicia fechado */
  .nav {
    display: none; 
  }
  /* Ao ficar ativo, exibe em bloco */
  .nav.active {
    display: block;
    margin-top: 1rem;
  }
  .nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .nav ul li a {
    text-decoration: none;
    color: #9B7791;
    font-size: 1.1rem;
    font-weight: 700;
  }
}

/* ------ LOGO E BOTÃO ------ */
.logo img {
  width: 120px;
  height: auto;
}

.btn-contato {
  background: #E44873;
  color: #fff;
  padding: 0.75rem 5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-block;
}


@media (max-width: 768px) {
  .header {
    display: none !important;
  }
}

#social-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: none; /* Inicia oculto */
  z-index: 1000;
  max-width: 250px;
}

#social-popup p {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

#social-btn {
  background: #E44873;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

#social-btn:hover {
  background: #ff5a8c;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: block;
}

.whatsapp-button img {
  width: 60px;   /* Ajuste o tamanho conforme desejado */
  height: auto;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.curso-card {
  background: #f1f1f1;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  max-width: 300px;
}

.curso-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.curso-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.curso-card .preco-antigo {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
}

.curso-card .preco-atual {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E44873;
  margin: 0.5rem 0;
}

.curso-card .btn-compra {
  display: inline-block;
  background: #E44873;
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.curso-card .btn-compra:hover {
  background: #ff5a8c;
}


/* === Seção Mentoria === */
.mentoria {
  background: #fff;
  padding: 4rem 0;
}
.mentoria-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.mentoria-content {
  flex: 1 1 400px;
}
.mentoria-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #9B7791;
}
.mentoria-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.mentoria-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.mentoria-list li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.mentoria-content .btn {
  margin-top: 1.5rem;
}
.mentoria-image {
  flex: 1 1 300px;
  text-align: right;
}
.mentoria-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsivo */
@media (max-width: 768px) {
  .mentoria-container {
    flex-direction: column;
    text-align: center;
  }
  .mentoria-image {
    margin-top: 2rem;
  }
  .mentoria-content, .mentoria-image {
    flex: 1 1 100%;
  }
}

/* === Preços da Mentoria === */
.mentoria-price {
  margin-top: 1rem;
}
.mentoria-price .old-price {
  font-size: 1rem;
  color: #000;
}
.mentoria-price .new-price {
  font-size: 2rem;
  color: #E44873;
  font-weight: bold;
}

.depoimento video {
  width: 100%;           /* ocupa toda a largura do card */
  height: auto;
  object-fit: cover;     /* ajusta o conteúdo ao container */
  background: #000;      /* fallback preto enquanto carrega */
  margin-bottom: 1rem;
}

.video-card {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Proporção 16:9 */
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.video-card {
  /* removemos padding-top/altura fixa */
  position: static;
  overflow: visible;
  margin-bottom: 1rem;
}

.video-thumb,
.video-content {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  /* mostra toda a imagem/video sem cortar */
  object-fit: contain !important;
  display: block !important;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.video-content {
  display: none;  /* até o JS trocar para block */
}


/* Esconde o player até o clique */
.video-content {
  display: none;
}

/* Grid fixa com 4 colunas */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Se quiser manter responsividade, faça quebra só em telas bem pequenas */
@media (max-width: 768px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
}





/* Nota de parcelamento discreta com tooltip */
.payment-note{color:#9aa0a6;font-size:12px;display:inline-block;margin-top:4px;position:relative;cursor:help}
.payment-note::after{content:'Parcelamento sujeito a juros do cartão de crédito.';position:absolute;left:0;top:-8px;transform:translateY(-100%);background:rgba(15,16,34,.96);color:#fff;padding:8px 10px;border-radius:8px;box-shadow:0 8px 24px rgba(0,0,0,.25);white-space:nowrap;font-size:12px;border:1px solid rgba(255,255,255,.15);opacity:0;pointer-events:none;transition:opacity .15s ease}
.payment-note::before{content:'';position:absolute;left:10px;top:-10px;transform:translateY(-100%);border-width:6px;border-style:solid;border-color:transparent transparent rgba(15,16,34,.96) transparent;opacity:0;transition:opacity .15s ease}
.payment-note:hover::after,.payment-note:hover::before{opacity:1;transition-delay:.12s}
