/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.destaque {
    color: #00ff88;
}

.lead,
.lead-sobre,
.subtitulo,
.frase-impacto,
.oferta-texto {
    color: #e0e0e0;
}

a {
    color: inherit;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 100px;
    border-bottom: 4px solid #00ff88;
}

.hero-conteudo {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-texto {
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 25px;
    line-height: 1.05;
    font-weight: 800;
}

.subtitulo {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 760px;
    color: #e5e5e5;
}

.hero-imagem {
    text-align: center;
}

.hero-imagem img {
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.btn-cta,
.btn-cta-grande {
    display: inline-block;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0a0a;
    padding: 18px 48px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.25);
}

.btn-cta:hover,
.btn-cta-grande:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-cta-grande {
    font-size: 1.3rem;
    padding: 20px 56px;
}

/* DOR */
.dor {
    background: #111;
    padding: 80px 0;
}

.dor h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.lista-dor {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ddd;
}

.lista-dor li {
    font-size: 1.15rem;
    padding: 16px 0;
    border-bottom: 1px solid #222;
}

.lista-dor li:last-child {
    border-bottom: none;
}

.frase-impacto {
    text-align: center;
    font-size: 1.25rem;
    background: #1a1a2e;
    padding: 30px;
    border-left: 5px solid #00ff88;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    color: #f1f1f1;
}

/* SOLUÇÃO */
.solucao {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 80px 0;
    color: #f5f5f5;
}

.solucao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.solucao-texto h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.15rem;
    max-width: 700px;
    color: #e1e1e1;
}

.oferta .lead {
    margin: 0 auto 24px;
    text-align: center;
}

.oferta .lead:last-of-type {
    margin-bottom: 44px;
}

.solucao-imagem img {
    border-radius: 24px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
}

.pilares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pilar {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pilar:hover {
    transform: translateY(-8px);
    border-color: #00ff88;
}

.pilar h3 {
    font-size: 1.4rem;
    color: #00ff88;
    margin-bottom: 14px;
}

.pilar p {
    color: #d9d9d9;
    font-size: 1rem;
}

/* SOBRE */
.sobre {
    padding: 80px 0;
}

.sobre h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.sobre-topo {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 26px;
    align-items: center;
    margin-bottom: 40px;
}

.foto-perfil {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.lead-sobre {
    font-size: 1.2rem;
    color: #e5e5e5;
}

.sobre p {
    color: #e0e0e0;
    margin-bottom: 26px;
    font-size: 1rem;
}

.foto-contexto {
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.foto-contexto img {
    width: 100%;
    max-width: 540px;
    display: block;
    border-radius: 16px;
}

.foto-contexto figcaption {
    margin-top: 10px;
    color: #bbb;
    font-size: 0.95rem;
    text-align: center;
}

.galeria-varzea {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* AUTORIDADE */
.autoridade-treinador {
    background: #0f1630;
    padding: 80px 0;
}

.treinador-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.treinador-imagem img {
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.treinador-texto h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.treinador-texto p {
    font-size: 1.1rem;
    color: #e3e3e3;
}

/* OFERTA CONTEÚDO */
.oferta-conteudo {
    padding: 80px 0;
}

.oferta-conteudo h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.lista-entrega {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.item-entrega {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-entrega h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #00ff88;
}

.item-entrega p {
    color: #ddd;
    line-height: 1.7;
}

/* OFERTA */
.oferta {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.oferta h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.oferta .destaque {
    color: #0a0a0a;
}

.oferta p {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 18px;
    text-align: center;
}

.caixa-preco {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #0a0a0a;
    padding: 36px 40px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    text-align: center;
}

.caixa-preco p {
    color: #111;
    margin: 0;
    text-align: center;
}

.preco-antigo {
    font-size: 1rem;
    color: #555;
}

.preco-atual {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
}

.preco-detalhe {
    font-size: 0.95rem;
    color: #444;
}

.garantia {
    padding: 60px 0;
    background: #111;
}

.selo-garantia {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #161b35;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 255, 136, 0.14);
}

.selo-garantia h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.selo-garantia p {
    color: #dcdcdc;
    margin-bottom: 14px;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.pergunta {
    background: #111;
    padding: 28px 30px;
    border-radius: 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pergunta h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.pergunta p {
    color: #d1d1d1;
    line-height: 1.7;
}

/* CTA FINAL */
.cta-final {
    background: #080b14;
    padding: 90px 0;
    text-align: center;
}

.foto-conquista img {
    border-radius: 22px;
    margin: 0 auto 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.cta-final h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-final .lead {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.aviso-final {
    margin-top: 24px;
    color: #a8f5bd;
    font-weight: 700;
}

footer {
    background: #000;
    padding: 30px 0;
    text-align: center;
    color: #777;
}

footer p {
    margin: 8px 0;
}

.whatsapp-flutuante {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-flutuante:hover {
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .hero-conteudo,
    .solucao-grid,
    .sobre-topo,
    .treinador-grid,
    .galeria-varzea {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .container {
        padding: 0 18px;
    }
}

@media (max-width: 600px) {
    .hero h1,
    .solucao-texto h2,
    .sobre h2,
    .treinador-texto h2,
    .cta-final h2 {
        font-size: 2rem;
    }

    .btn-cta-grande {
        width: 100%;
        padding: 18px 0;
    }

    .cta-final {
        padding: 60px 0;
    }
}


/* RESPONSIVO MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitulo {
        font-size: 1.1rem;
    }
    
    .btn-cta, .btn-cta-grande {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .btn-cta-grande {
        font-size: 1.2rem;
    }
    
    .dores h2, .metodo h2, .prova-social h2 {
        font-size: 1.7rem;
    }
    
    .oferta h2 {
        font-size: 2rem;
    }
    
    .lista-dores li {
        font-size: 1rem;
    }
}
e/* 
BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whats 2s infinite;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whats 2s infinite;
    text-decoration: none;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whats 2s infinite;
    text-decoration: none;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whats 2s infinite;
    text-decoration: none;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whats 2s infinite;
    text-decoration: none;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whats 2s infinite;
    text-decoration: none;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-whats 2s infinite;
    text-decoration: none;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media(max-width: 768px) {
    .whatsapp-flutuante {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}
