/* VARIÁVEIS E ESTILOS GERAIS */
:root {
    --vermelho: #E74C3C;
    --verde: #27AE60;
    --azul: #0D47A1;
	--azul-topo: #007FFF;
    --cinza-claro: #f8f9fa;
    --cinza-texto: #555;
    --fonte-principal: 'Arial', sans-serif;
}

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

body {
    font-family: var(--fonte-principal);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.video-centralizado {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
   
   
   .ebook-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
	
	
}

.linha-personalizada {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFA500, #4169E1); /* Gradiente laranja para azul */
    margin: 20px 0;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* CABEÇALHO */
.header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px 0;
    text-align: center;
}

.box-img-header {
    margin-bottom: 20px;
}

.logo-header {
    max-width: 150px;
    height: auto;
}

.header-text h1 {
    color: var(--vermelho);
    font-size: 2rem;
    margin-bottom: 10px;
}

.header-text h2 {
    color: var(--cinza-texto);
    font-size: 1.2rem;
    font-weight: normal;
}

/* SEPARADOR */
.icone-separador {
    text-align: center;
    margin: 30px 0;
}

.icone-separador img {
    width: 50px;
    height: auto;
}

/* SEÇÕES DE IMAGENS */
.ebook-section {
    padding: 20px 0;
}

.ebook-cover {
    text-align: center;
}

.ebook-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.retrato {
    max-width: 400px;
}

.sem-arredondamento {
    border-radius: 0;
}

/* TEXTO DE VENDAS */
.texto-vendas {
    padding: 30px 0;
}

.container-texto {
    max-width: 800px;
    margin: 0 auto;
}

.pergunta {
    color: var(--azul);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.resposta {
    background: var(--cinza-claro);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #4FC3F7;
}

.lista-beneficios {
    margin: 20px 0;
    padding-left: 20px;
}

.lista-beneficios li {
    margin-bottom: 10px;
    list-style-type: none;
}

.destaque-vermelho {
    color: var(--vermelho);
    font-weight: bold;
    text-align: center;
    margin: 25px 0;
}

/* BOTÃO */
.botao-compra {
    text-align: center;
    margin: 30px 0;
}

.botao-link {
    display: inline-block;
    background: var(--vermelho);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.botao-link:hover {
    background: var(--verde);
    transform: scale(1.05);
}

/* CARROSSEL DE DEPOIMENTOS */
.depoimentos {
    padding: 40px 0;
}

.depoimentos-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
}

.depoimentos-titulo {
    text-align: center;
    color: var(--azul);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.slides-wrapper {
    position: relative;
    min-height: 300px;
}

.depoimento-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.depoimento-slide.ativo {
    display: block;
}

.depoente-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--vermelho);
    margin: 0 auto 15px;
}

.depoimento-texto {
    background: var(--cinza-claro);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.depoente-nome {
    font-weight: bold;
    color: var(--vermelho);
    margin-bottom: 10px;
}

.depoente-texto {
    font-style: italic;
    color: var(--cinza-texto);
    line-height: 1.5;
}

.slide-controle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(231, 76, 60, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slide-controle:hover {
    background: var(--vermelho);
}

.anterior {
    left: 10px;
}

.proximo {
    right: 10px;
}

.slide-indicadores {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slide-indicadores .indicador {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.slide-indicadores .indicador.ativo {
    background: var(--vermelho);
    transform: scale(1.2);
}

/* Estilos específicos para o formulário */
.formulario-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Centraliza verticalmente */
    padding: 20px; /* Espaçamento externo */
    box-sizing: border-box;
}

.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Largura máxima do formulário */
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Garante que padding não aumente a largura */
}

textarea {
    resize: vertical;
    height: 100px;
}

small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #888;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}


/* RODAPÉ */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

.footer p {
    margin: 0;
}

/* AJUSTE DAS SETAS SEM MEXER NA ESTRUTURA */
/* AJUSTE REVISADO - GARANTIDO FUNCIONAR */
.slide-controle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(231, 76, 60, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.anterior {
    left: 15px; /* Posição mais segura */
}

.proximo {
    right: 15px; /* Posição mais segura */
}

@media (min-width: 992px) {
    .anterior { left: -50px; } /* Só afasta em telas grandes */
    .proximo { right: -50px; }
}

.lista-misterio li {
   background: rgba(155, 89, 182, 0.1);
   padding: 12px;
   margin: 8px 0;
   border-left: 3px solid #9B59B6;
}
.destaque-urgente {
   color: #E74C3C;
   font-weight: bold;
   text-align: center;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .header-text h1 {
        font-size: 1.8rem;
    }
    
    .header-text h2 {
        font-size: 1.1rem;
    }
    
    .retrato {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }
    
    .header-text h1 {
        font-size: 1.5rem;
    }
    
    .header-text h2 {
        font-size: 1rem;
    }
    
    .pergunta {
        font-size: 1.3rem;
    }
    
    .depoimentos-titulo {
        font-size: 1.5rem;
    }
    
    .botao-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slide-controle {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .logo-header {
        max-width: 120px;
    }
    
    .header-text h1 {
        font-size: 1.3rem;
    }
    
    .icone-separador img {
        width: 40px;
    }
    
    .pergunta {
        font-size: 1.1rem;
    }
    
    .resposta {
        padding: 15px;
    }
    
    .lista-beneficios {
        padding-left: 15px;
    }
    
    .depoimentos-container {
        padding: 15px;
    }
    
    .depoente-foto {
        width: 80px;
        height: 80px;
    }
    
    .slide-controle {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .header-text h1 {
        font-size: 1.2rem;
    }
    
    .botao-link {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .depoente-nome, 
    .depoente-texto {
        font-size: 0.9rem;
    }
}