/* --- RESET E FONTES --- */
:root {
    --color-primary: #FF004C; /* Vermelho/Pink Fuerte (Energia e Paixão) */
    --color-secondary: #FFC300; /* Amarelo Vibrante (Atenção e Destaque) */
    --color-background: #111827; /* Fundo Escuro (Premium e Foco) */
    --color-text: #F3F4F6; /* Texto Claro */
    --color-light-bg: #1F2937; /* Fundo Secundário */
    --max-width: 900px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* --- ELEMENTOS DO TOPO --- */
.header-strip {
    background-color: var(--color-secondary);
    color: var(--color-background);
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
    font-size: 0.95em;
    font-family: 'Roboto Slab', serif;
}

.main-header {
    text-align: center;
    padding: 40px 0 20px;
}

h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.8em;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px var(--color-secondary); /* Efeito Ousado */
    line-height: 1.1;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 30px;
    padding: 0 10px;
}

/* --- DESTAQUE VISUAL (VÍDEO) --- */
.video-container {
    padding: 15px 0;
    margin-bottom: 20px;
    text-align: center;
    /* Borda chamativa para o destaque */
    border: 5px solid var(--color-secondary); 
    box-shadow: 0 0 20px rgba(255, 195, 0, 0.5); 
}

.highlight-video, .fallback-image {
    width: 100%;
    max-width: 600px; /* Limita o tamanho do vídeo para não quebrar o layout */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- BOTÕES CTA (CHAMATIVOS) --- */
.cta-section {
    text-align: center;
    padding: 20px 10px;
    background: linear-gradient(145deg, var(--color-light-bg) 0%, var(--color-background) 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--color-secondary);
    font-weight: 700;
}

.primary-button {
    display: block;
    width: 90%;
    max-width: 450px;
    margin: 15px auto;
    padding: 18px 25px;
    background-color: var(--color-primary);
    color: var(--color-background);
    text-transform: uppercase;
    font-size: 1.4em;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 0, 76, 0.4);
    transition: transform 0.2s, background-color 0.2s;
    letter-spacing: 1.5px;
}

.primary-button:hover {
    background-color: #CC003C; /* Cor mais escura no hover */
    transform: translateY(-2px);
}

/* EFEITO PULSE para alta conversão */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.cta-disclaimer {
    font-size: 0.9em;
    color: #AAAAAA;
    margin-top: 10px;
}

/* --- SEÇÃO DE CONTEÚDO --- */
.content-section {
    padding: 10px 0;
}

.section-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2em;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 5px solid var(--color-secondary); /* Elemento gráfico */
    color: #FFFFFF;
}

p {
    margin-bottom: 1.2em;
    font-size: 1.1em;
    padding: 0 10px;
}

.intro-text {
    font-style: italic;
    color: #CCCCCC;
}

/* --- IMAGENS DE CONTEÚDO --- */
.content-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Estilo específico para a imagem de Tática/Prova (Celular) */
.image-tactic {
    max-width: 450px; /* Mantém o formato de celular autêntico */
}

/* --- PROVA SOCIAL (DESIGN GRÁFICO) --- */
.social-proof-section {
    background-color: var(--color-light-bg);
    padding: 40px 15px;
    margin-top: 40px;
    border-top: 5px solid var(--color-primary);
}

.title-proof {
    color: var(--color-secondary);
    text-align: center;
    border-left: none;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-shadow: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: var(--color-background);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--color-primary);
}

.quote {
    font-style: italic;
    font-size: 1em;
    color: #E5E7EB;
    margin-bottom: 15px;
    padding: 0; /* Remove padding lateral */
}

.author {
    text-align: right;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 0.9em;
}

/* --- FOOTER --- */
footer {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8em;
    color: #6B7280;
    margin-top: 30px;
}

footer .container {
    padding: 0 15px;
}/* AJUSTE PARA O TEXTO DA FAIXA DO CABEÇALHO */
.header-strip p {
    line-height: 1; /* Centraliza o texto verticalmente */
    margin: 0; /* Garante que não haja margem extra */
}/* AJUSTE DE ESPAÇAMENTO: AUMENTAR MARGEM NO TOPO E NO CABEÇALHO */
.main-header {
    /* Era 40px, subindo para 60px de padding-top para descer o bloco principal */
    padding: 60px 0 20px; 
}

/* AJUSTE DE ESPAÇAMENTO: TÍTULOS DE TÉCNICAS (H3) */
.tactic-subtitle {
    /* Novo estilo para h3 das táticas */
    font-family: 'Roboto Slab', serif;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-primary); /* Cor de destaque */
    margin-top: 30px; /* Mais espaço acima do título */
    margin-bottom: 15px; /* Mais espaço abaixo do título para separar da copy */
    padding-left: 10px;
}