/* ---------- RESET & VARIÁVEIS ---------- */
:root {
    --primary-color: #00ff88; /* Verde Neon */
    --primary-dark: #00cc6a;
    --bg-dark: #0b0d21;
    --bg-card: #151933;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth; /* Rolagem suave nativa para âncoras */
}

body {
    background: linear-gradient(135deg, #05050a 0%, #0b0d21 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ---------- UTILITÁRIOS & ANIMAÇÕES ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.scroll-trigger {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-trigger.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.highlight {
    color: var(--primary-color);
}

/* ---------- HEADER ---------- */
.header {
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.2;
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.text-box {
    z-index: 5;
    max-width: 600px;
}

.text-box h1 {
    font-size: 4rem;
    line-height: 1;
    font-weight: 900;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    padding: 15px 40px;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    text-align: center;
}

.btn:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    transform: translateY(-3px);
}

.btn.glow-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.center-logo img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80vh;
    opacity: 0.05;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.athlete-area {
    position: relative;
    z-index: 2;
}

.athlete {
    height: 90vh;
    object-fit: contain;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.5));
}

/* ---------- TRANSFORMAÇÕES ---------- */
.transformations {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
    background: #0d0f18; /* Fundo sólido para contraste */
    flex-wrap: wrap;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mantendo sua preferência de 1 coluna */
    justify-items: center;
    gap: 15px;
    flex: 1;
}

.gallery img {
    width: 100%;
    max-width: 400px; /* Limite para não ficar gigante */
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.gallery img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.text-box ul.benefit-list {
    list-style: none;
    margin: 20px 0 40px;
}

.text-box ul.benefit-list li {
    font-size: 1.2rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

/* ---------- MATHEUS ---------- */
.matheus {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    background: linear-gradient(90deg, #05050a 0%, #001f1a 100%);
    align-items: center;
    flex-wrap: wrap-reverse;
}

.matheus-img-container {
    position: relative;
    flex: 1;
}

.matheus-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 0px rgba(0, 255, 136, 0.1);
}

.matheus-text {
    flex: 1;
}

.matheus-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
}

.matheus-text span {
    color: var(--primary-color);
}

.matheus-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ---------- RECEBER (CARDS) ---------- */
.receber {
    padding: 120px 5%;
    text-align: center;
    background: #0a0a13;
}

.receber h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(21, 25, 51, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* ---------- INTERAÇÃO DE PREÇO & CHECKOUT (KIWIFY) ---------- */

/* Botão "Ver Valor" */
.btn-reveal {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 20px;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 1px;
    align-self: center;
}

.btn-reveal:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

/* Container do Preço + Botão Kiwify */
.card-price {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Espaço entre preço e botão */
}

.card-price .value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-top: 10px;
}

.card-price .period {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Botão de Compra (Kiwify) */
.btn-buy {
    background: var(--primary-color);
    color: #000;
    padding: 12px 25px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;   
    width: 100%;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.btn-buy:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

/* Estado Ativo do Card */
.card.active {
    border-color: var(--primary-color);
    background: rgba(21, 25, 51, 0.95);
    transform: scale(1.02);
    z-index: 5;
}

.card.active .card-price {
    max-height: 250px; /* Aumentado para caber o novo botão */
    opacity: 1;
    margin-top: 10px;
}

.card.active .btn-reveal {
    display: none;
}

/* ---------- COMBO (Estilo Imagem + Centralizado) ---------- */
.combo {
    padding: 100px 5%;
    background: #06060c;
    display: flex;
    justify-content: center;
}

.combo-container {
    background: #0d101b; /* Fundo bem escuro igual da imagem */
    border-radius: 30px;
    display: flex;
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.combo-img {
    flex: 1;
    min-width: 300px;
}

.combo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.combo-info {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* CENTRALIZAR TUDO: */
    align-items: center; 
    text-align: center; 
}

.combo-info h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.combo-info h4 {
    color: var(--text-gray);
    margin-bottom: 35px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* --- LISTA CENTRALIZADA MAS ALINHADA --- */
.combo-list {
    list-style: none;
    margin-bottom: 40px;
    display: inline-block; /* O segredo: o bloco se comporta como texto */
    text-align: left; /* Mantém o texto alinhado à esquerda dentro do bloco */
}

.combo-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* O quadrado verde do check */
.check-icon {
    background: var(--primary-color);
    color: #000;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

/* --- PREÇO --- */
.price-box {
    margin-bottom: 30px;
    line-height: 1.1;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #555; /* Cinza bem apagado */
    font-size: 1.2rem;
    font-weight: 500;
}

.new-price {
    display: block;
    font-size: 4rem; /* Bem grande igual a imagem */
    font-weight: 900;
    color: var(--primary-color);
    margin-top: -5px;
    letter-spacing: -2px; /* Letras mais juntinhas */
}

/* --- BOTÃO LARGO --- */
.btn-combo {
    background: var(--primary-color);
    color: #000;
    width: 100%; /* Largura total */
    max-width: 400px; /* Mas com limite pra não ficar feio no PC */
    padding: 18px 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.2); /* Glow suave */
}

.btn-combo:hover {
    background: #fff; /* Fica branco no hover */
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

/* Mobile Ajuste */
@media (max-width: 900px) {
    .combo-info {
        padding: 40px 20px;
    }
    .new-price {
        font-size: 3rem;
    }
}

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 5%;
    background: #09090f;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.faq-container {
    width: 100%;
    max-width: 800px;
}

.faq-item {
    background: #151933;
    margin-bottom: 15px;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faq-item:hover {
    background: #1a1f3d;
    transform: translateX(10px);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.faq-item p {
    color: var(--text-gray);
}

/* ---------- FOOTER ---------- */
.contato {
    padding: 80px 5% 30px;
    text-align: center;
    background: linear-gradient(180deg, #09090f 0%, #001a14 100%);
    border-top: 1px solid #1a1f3d;
}

.footer-content h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Botão Instagram e Whatsapp */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.social-link svg {
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.social-link:hover svg {
    stroke: var(--primary-color);
    transform: scale(1.1);
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    margin-top: 30px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    border-color: #128C7E;
}

.copy {
    margin-top: 60px;
    font-size: 0.8rem;
    color: #555;
}

/* ---------- MEDIA QUERIES (RESPONSIVIDADE) ---------- */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }
    
    .athlete {
        height: 50vh;
        margin-top: 30px;
    }
    
    .text-box h1 {
        font-size: 3rem;
    }
    
    .transformations, .matheus, .combo-container {
        flex-direction: column;
    }
    
    .gallery {
        width: 100%;
    }
    
    .matheus-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .text-box h1 {
        font-size: 2.2rem;
    }
    
    .logo-text {
        font-size: 10px;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
}