/* --- RESET E VARIÁVEIS --- */
:root {
    --primary-red: #b12d2d; /* Vermelho sóbrio e forte */
    --hover-red: #973f3f;
    --black-bg: #121212; /* Preto suave */
    --dark-gray: #1E1E1E;
    --light-gray: #F5F5F5;
    --text-white: #FFFFFF;
    --text-dark: #333333;
    --spacing: 80px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-gray);
    overflow-x: hidden; /* Evita rolagem lateral indesejada no mobile */
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

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

/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 7000;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--hover-red);
    border-color: var(--hover-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    margin-top: 16px;
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--black-bg);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

/* --- SEÇÃO 1: HERO (ATENÇÃO) --- */
/* 1. O FUNDO E A PROFUNDIDADE */
.hero-section {
    position: relative;
    /* Aqui está a mágica: Gradiente preto semi-transparente por cima da imagem */
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.6) 100%),
        url('img/fotoKaue.jpeg'); /* <--- TROQUE PELA SUA IMAGEM */
    
    background-size: cover;      /* Cobre tudo */
    background-position: center; /* Centraliza */
    background-repeat: no-repeat;
    
    /* Espaçamento interno para o conteúdo não colar nas bordas */
    padding: 100px 0; 
    
    /* Garante que o texto seja branco */
    color: #ffffff; 
}

/* 2. ORGANIZAÇÃO DO LAYOUT */
.hero-section .container {
    /* Limita a largura para não ficar muito esticado em telas grandes */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    /* Isso garante que o conteúdo fique na esquerda (como na sua imagem de referência) */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.hero-content {
    max-width: 600px; /* Limita a largura do texto para não cobrir a imagem inteira */
}

/* 3. ESTILOS EXTRAS PARA FICAR IGUAL AO PRINT */

/* A tag vermelha em cima do título */
.tag {
    background-color: #B92B27; /* Um vermelho escuro similar ao print */
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Título */
.hero-section h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: sans-serif; /* Use a fonte que você preferir */
}

/* Lista de benefícios (checkmarks) */
.mini-proofs {
    list-style: none; /* Remove as bolinhas padrão */
    padding: 0;
    margin: 30px 0;
}

.mini-proofs li {
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9; /* Deixa levemente mais suave que o título */
}

.cta-group {
    margin-top: 40px;
}

/* --- SEÇÃO 2: INTERESSE (MÉTODO) --- */
.method-section {
    padding: var(--spacing) 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--black-bg);
    margin-bottom: 10px;
}

.quote-box {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 50px;
    border-left: 5px solid var(--black-bg);
    background: #f9f9f9;
    padding: 20px;
    display: inline-block;
    width: 100%;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.card {
    background: #f4f4f4;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dark-card {
    background: var(--black-bg);
    color: var(--text-white);
}

.card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--primary-red);
    display: inline-block;
    padding-bottom: 5px;
}

.check-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.check-list li::before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* --- SEÇÃO 3: DESEJO (HISTÓRIA) --- */
.about-section {
    background-color: #0a0a0a; /* Fundo bem escuro */
    color: #fff;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide a tela em 2 */
    gap: 60px;
    align-items: center;
}

/* Tipografia */
.section-tag {
    color: #B92B27; /* Vermelho da marca */
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight {
    color: #fff; /* Garante destaque branco puro */
    /* Opcional: sublinhado vermelho sutil */
    border-bottom: 3px solid #B92B27; 
}

.story-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* O destaque da Odontologia */
.turning-point {
    border-left: 4px solid #B92B27;
    padding-left: 20px;
    font-style: italic;
    color: #e0e0e0;
    margin: 30px 0;
    font-size: 18px;
}

.turning-point strong {
    color: #fff;
    font-weight: 700;
}

/* A Mágica Visual (Lado Direito) */
.about-image-wrapper {
    position: relative;
    height: 600px; /* Altura fixa para a composição */
}

.trainer-photo {
    width: 90%; /* Deixa um espaço para o design respirar */
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(0.8); /* Escurece levemente a foto para destacar o card */
}

/* O Card Flutuante (Glassmorphism) */
.floating-glass {
    position: absolute;
    bottom: 40px; /* Posiciona na parte inferior */
    left: -20px; /* "Quebra" o layout jogando um pouco pra esquerda */
    
    background: rgba(20, 20, 20, 0.85); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(10px); /* O efeito de desfoque atrás */
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.achievements-card ul {
    list-style: none;
    padding: 0;
}

.achievements-card li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.achievements-card i {
    font-size: 24px;
    margin-right: 15px;
    /* Aqui você pode usar SVGs reais */
}

.achievements-card div strong {
    display: block;
    color: #fff;
    font-size: 16px;
}

.achievements-card div span {
    font-size: 13px;
    color: #B92B27; /* Detalhe em vermelho */
    text-transform: uppercase;
    font-weight: bold;
}


/* --- SEÇÃO 4: BENEFÍCIOS --- */
.benefits-section {
    padding: var(--spacing) 0;
    background: #fff;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: var(--black-bg);
}

.benefits-section .subtitle {
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: left;
    transition: 0.3s;
}

.benefit-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.1);
}

/* --- NOVA SEÇÃO: FEEDBACKS --- */
.feedback-section {
    padding: var(--spacing) 0;
    background-color: var(--dark-gray); /* Fundo escuro para contraste */
    color: var(--text-white);
    text-align: center;
}

.feedback-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.feedback-section .subtitle {
    margin-bottom: 50px;
    color: #ccc;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.feedback-card {
    background: var(--black-bg);
    padding: 30px;
    border-radius: 8px;
    border-bottom: 3px solid var(--primary-red); /* Detalhe em vermelho */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feedback-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.feedback-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-white);
}

.feedback-author span {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
}


/* --- SEÇÃO 5: AÇÃO (CTA FINAL) --- */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-red);
    color: var(--text-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.final-cta-box {
    margin-top: 40px;
    background: rgba(0,0,0,0.1);
    padding: 40px;
    border-radius: 10px;
    display: inline-block;
}

.final-cta-box .btn-primary {
    background-color: var(--text-white);
    color: var(--primary-red);
    border: none;
}

.final-cta-box .btn-primary:hover {
    background-color: var(--black-bg);
    color: var(--text-white);
}

.link-secondary {
    display: block;
    margin-top: 20px;
    color: var(--text-white);
    text-decoration: underline;
}

.scarcity {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- SEÇÃO 6: FAQ E FOOTER --- */
.faq-section {
    padding: var(--spacing) 0;
    background-color: #fff;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--primary-red);
    font-size: 1.2rem;
}

footer {
    background-color: var(--black-bg);
    color: #666;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 3px solid var(--primary-red);
}

/* --- RESPONSIVIDADE GERAL E MOBILE --- */
@media (max-width: 768px) {
    /* Ajustes de Tipografia para telas menores */
    .hero-section h1 { font-size: 1.5nnnrem; line-height: 1.3; }
    .subheadline { font-size: 1rem; }
    h2 { font-size: 1.7rem !important; } /* Força títulos menores */
    .quote-box { font-size: 1.2rem; padding: 15px; }

    /* Ajustes de Layout (Empilhar colunas) */
    .grid-2-col, 
    .feedback-grid, 
    .benefits-grid, 
    .faq-grid {
        grid-template-columns: 1fr; /* Uma coluna só */
    }

    /* Ajustes dos Botões */
    .cta-group .btn {
        display: block;
        width: 100%;
        margin: 15px 0 0 0;
        text-align: center;
    }

    /* Ajustes de Espaçamento */
    :root {
        --spacing: 50px; /* Menos espaço entre seções no mobile */
    }

    .container { padding: 0 15px; }

    .hero-section {
        text-align: center;
        padding: 60px 0;
    }
    
    /* Reduzir padding interno dos cards no mobile */
    .card, .achievements-box, .feedback-card, .final-cta-box {
         padding: 25px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .floating-glass {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: -50px; /* Puxa pra cima da foto no mobile */
    }

    /* 1. Transforma o Grid em Coluna Única */
    .about-grid {
        grid-template-columns: 1fr; /* Uma coluna só */
        gap: 40px; /* Espaço entre texto e foto */
        padding: 0 20px; /* Margem lateral para não colar na borda */
    }

    /* 2. Ajuste do Texto */
    .about-text {
        text-align: left; /* Mantém alinhado à esquerda ou use center se preferir */
    }

    h2 {
        font-size: 32px; /* Diminui um pouco o título para não quebrar feio */
    }

    /* 3. Ajuste da Foto */
    .about-image-wrapper {
        height: 500px; /* Altura fixa para garantir que a foto apareça bem */
        width: 100%;
        margin-top: 20px;
        /* Cria um espaço extra embaixo para o card flutuante não invadir a próxima seção */
        margin-bottom: 60px; 
    }
    
    .trainer-photo {
        width: 100%; /* Ocupa a largura total */
    }

    /* 4. O Pulo do Gato: O Card Flutuante no Celular */
    .floating-glass {
        /* Centraliza o card */
        left: 50%;
        transform: translateX(-50%); 
        
        /* Posiciona ele mais para baixo, pegando apenas o rodapé da foto */
        bottom: -40px; 
        
        /* Ajusta a largura para caber na tela do celular */
        width: 90%; 
        
        /* Ajustes visuais */
        padding: 20px;
        backdrop-filter: blur(15px); /* Aumenta o desfoque para garantir leitura */
    }

    /* Ajuste do tamanho da fonte dentro do card para não quebrar */
    .achievements-card i {
        font-size: 20px;
    }
    
    .achievements-card div strong {
        font-size: 14px;
    }
    
    .achievements-card div span {
        font-size: 11px;
    }

    .benefits-section h2 {
    margin-top: 100px;
    font-size: 2.5rem;
    color: var(--black-bg);
}
}
