/* style.css - Estilos Atualizados do Clone */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --ouro-claro: linear-gradient(135deg, #ffd700 0%, #ffec8b 25%, #daa520 50%, #b8860b 75%, #8b6914 100%);
    --ouro-texto: linear-gradient(135deg, #ffd700 0%, #ffec8b 30%, #daa520 50%, #b8860b 70%, #8b6914 100%);
    --ouro-brilho: linear-gradient(45deg, #ffd700, #ffed4e, #daa520, #b8860b, #daa520, #ffed4e, #ffd700);
    --preto-elegante: #0f0f0f;
    --cinza-escuro: #1a1a1a;
    --cinza-medio: #2a2a2a;
    --cinza-claro: #3a3a3a;
    --branco: #ffffff;
    --douro-shadow: rgba(218, 165, 32, 0.4);
}

body {
    background-color: var(--preto-elegante);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden; /* Previne scroll lateral em mobile */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Efeitos dourados globais */
.efeito-dourado {
    background: var(--ouro-texto);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.borda-dourada {
    position: relative;
    border-radius: 10px;
    padding: 2px;
    background: var(--ouro-brilho);
    background-size: 400% 400%;
    animation: brilhoDourado 4s ease infinite;
    transition: all 0.3s ease;
}

.borda-dourada-interna {
    background: var(--cinza-escuro);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

@keyframes brilhoDourado {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
header {
    position: relative;
    padding: 30px 0;
    text-align: center;
    overflow: hidden;
    background: var(--cinza-escuro);
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.topo-imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 0;
}

.logo-topo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 300px;
    height: auto;
    z-index: 2;
}

.logo {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--douro-shadow);
    position: relative;
    z-index: 3;
}

.slogan {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.9)), url('imagens/sobre-mim.webp') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px); /* Efeito sutil */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--ouro-texto);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px var(--douro-shadow);
    transition: all 0.3s ease;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.btn-dourado {
    display: inline-block;
    padding: 15px 40px;
    background: var(--ouro-claro);
    color: var(--preto-elegante);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

.btn-dourado:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(218, 165, 32, 0.5);
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Benefícios Grid */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.beneficio-card {
    padding: 25px;
    background: var(--cinza-escuro);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
}

.beneficio-card i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.beneficio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.beneficio-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Programa Steps */
.programa-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.step-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--cinza-escuro);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.2);
}

.step-conteudo {
    text-align: center;
}

.step-numero {
    font-size: 1.5rem;
    background: var(--ouro-claro);
    color: var(--preto-elegante);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.step p {
    margin-bottom: 20px;
}

.step-lista {
    list-style: none;
    text-align: center;
}

.step-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

/* Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.depoimento-card {
    padding: 25px;
    height: 100%;
    text-align: center;
}

.depoimento-imagem {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid transparent;
    background: var(--ouro-claro);
    padding: 2px;
}

.depoimento-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.depoimento-texto::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.3;
}

.depoimento-autor h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.depoimento-autor p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.autor-resultado {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

/* Mentor Bio */
#mentor {
    text-align: center;
    background: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.9)), url('imagens/mobile-1.webp') center/cover no-repeat;
    background-blend-mode: multiply;
    padding: 80px 0;
}

.mentor-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.mentor-imagem {
    display: none; /* Imagem como background, então ocultamos */
}

.mentor-texto {
    flex: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mentor-texto p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

/* CTA Final */
.cta-final {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(15, 15, 15, 0.9), rgba(15, 15, 15, 0.9)), var(--cinza-escuro);
    position: relative;
}

.cta-final h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contador {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.contador-item {
    background: var(--cinza-medio);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contador-item:hover {
    transform: scale(1.05);
}

.contador-numero {
    font-size: 2rem;
    font-weight: bold;
    background: var(--ouro-texto);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contador-texto {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-grande {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.cta-garantia {
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.garantia-imagem-container {
    text-align: center;
}

.garantia-imagem {
    width: 50px;
    height: auto;
    transition: all 0.3s ease;
}

.garantia-imagem:hover {
    transform: scale(1.1);
}

/* Formulário */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 30px;
}

form input {
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background: var(--cinza-medio);
    color: var(--branco);
    transition: all 0.3s ease;
}

form input:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(218, 165, 32, 0.5);
}

form input::placeholder {
    color: var(--branco);
    opacity: 0.7;
}

/* Footer */
footer {
    background: var(--cinza-escuro);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
}

/* Efeitos de animação */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .contador {
        flex-wrap: wrap;
    }
    
    .btn-dourado {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .btn-grande {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
    
    .footer-logo-img {
        max-width: 80px;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contador-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .contador-numero {
        font-size: 1.5rem;
    }
    
    .step-lista li {
        justify-content: center;
    }
    
    .mentor-texto p {
        font-size: 1.1rem;
    }
    
    .autor-resultado {
        color: #888;
    }
}

@media (min-width: 769px) {
    .programa-steps {
        flex-direction: row;
        justify-content: center;
    }
    
    .step-card {
        min-width: 300px;
        max-width: 350px;
    }
}