/* --- IMPORTAÇÃO DE FONTES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=JetBrains+Mono:wght@400;700&family=Playfair+Display:wght@400;600&display=swap');

/* --- VARIÁVEIS E RESET --- */
:root {
    --bg-color: #050505;
    --card-bg: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #00ff88; /* O verde neon característico */
    --accent-glow: rgba(0, 255, 136, 0.2);
    --border: #222;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilitários */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container Fluido para os Carrosséis ocuparem a tela toda */
.container-fluid {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: flex-start; /* Alinha o logo à esquerda */
    align-items: center;
    padding: 20px 40px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
}

/* Garante que o link do logo não fique azul/sublinhado */
.logo a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.logo a:hover { opacity: 0.8; }

.highlight { color: var(--accent); }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    background: radial-gradient(circle at center, #111 0%, #050505 70%);
}

.tag {
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.8rem;
    border: 1px solid var(--accent-glow);
    padding: 5px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--text-primary);
    color: #000;
    padding: 15px 30px;
    font-weight: 700;
    border-radius: 2px;
    display: inline-block;
}

.btn-secondary {
    border: 1px solid var(--border);
    padding: 15px 30px;
    margin-left: 10px;
    border-radius: 2px;
}

.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* --- SECTIONS GERAIS --- */
.section { padding: 100px 0; }
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* --- METODOLOGIA (CARDS) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    transition: 0.3s;
}

.card:hover { border-color: var(--accent); }

.card .icon {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0.3;
}

.card h3 { margin-bottom: 15px; }
.card p { color: var(--text-secondary); font-size: 0.95rem; }


/* --- SEÇÃO FOUNDER --- */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide a tela em 2 partes iguais */
    gap: 80px;
    align-items: center;
}

/* Coluna da Imagem */
.founder-image-wrapper {
    position: relative;
    border: 1px solid #222;
    /* IMPORTANTE: Isso impede que a imagem "vaze" para fora da borda quando der zoom */
    overflow: hidden; 
}

.founder-img {
    width: 100%;
    display: block;
    /* Removemos o filtro de grayscale para ela ficar sempre colorida */
    
    /* A mágica da suavidade: 0.7s é um tempo mais longo para ficar "macio" */
    transition: transform 0.7s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.founder-image-wrapper:hover .founder-img {
    /* O Zoom leve: aumenta apenas 5% (1.05) */
    transform: scale(1.05);
}

.founder-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.verified-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: #a58d71; /* Dourado escuro */
    margin-bottom: 10px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.founder-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Sombra para leitura na foto */
}

.founder-overlay p {
    font-family: var(--font-mono);
    color: #ccc;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-top: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Coluna de Conteúdo */
.overline {
    display: block;
    font-family: var(--font-mono);
    color: #666;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}

.overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #444;
}

.serif-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
}

.faded-text {
    color: #333;
    font-style: italic;
}

.founder-quote {
    font-size: 1.1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 50px;
    border-left: 2px solid #a58d71;
    padding-left: 20px;
}

.founder-quote strong { color: #fff; }

/* Pequenos Cards de Features */
.founder-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-small-card {
    background: #080808;
    border: 1px solid #1a1a1a;
    padding: 25px;
    transition: 0.3s;
}

.feature-small-card:hover { border-color: #333; }

.feature-icon {
    font-size: 1.2rem;
    color: #a58d71;
    margin-bottom: 15px;
}

.feature-small-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-small-card p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
}


/* --- SEÇÃO VISUAL CONFIRMATION (CARROSSEL FOTOS) --- */
.visual-loop {
    background-color: #050505;
    padding-bottom: 40px;
}

.label-tech {
    font-family: var(--font-mono);
    color: #a58d71;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

/* O SEGREDO DO ALINHAMENTO DAS FOTOS */
.visual-slide {
    /* "flex: 0 0 auto" é o comando que PROÍBE a imagem de encolher/sobrepor */
    flex: 0 0 auto; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-slide img {
    height: 400px; /* Altura fixa */
    width: auto;   /* Largura automática proporcional */
    
    object-fit: contain; /* Mostra a imagem inteira */
    background-color: #000;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    display: block; /* Remove espaços fantasmas */
}

.visual-slide img:hover {
    filter: grayscale(0%) contrast(1);
    border-color: #555;
    transform: scale(1.02);
    z-index: 10;
}


/* --- SEÇÃO FEEDBACK LOOP (MARQUEE PRINTS) --- */
/* --- SEÇÃO FEEDBACK (SCROLL MANUAL) --- */

.feedback-loop {
    padding: 80px 0;
    background: #050505;
    /* Removemos o overflow hidden geral para permitir interações */
}

.feedback-loop .section-header {
    margin-bottom: 40px;
}

/* Container que permite o scroll */
.marquee-wrapper {
    width: 100%;
    display: flex;
    
    /* HABILITA O SCROLL MANUAL HORIZONTAL */
    overflow-x: auto; 
    
    /* EFEITO MAGNÉTICO (SNAP): A imagem "trava" no centro ao soltar */
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth;
    
    /* Remove a barra de rolagem visualmente (para ficar clean) */
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch; /* Suavidade no iOS */
    
    /* Espaçamento interno para os itens não colarem na borda da tela */
    padding: 20px 0; 
}

/* Esconde a barra de rolagem no Chrome/Safari */
/* --- CONFIGURAÇÃO GERAL DOS CARROSSÉIS --- */
.marquee-wrapper {
    width: 100%;
    display: flex;
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
}

/* --- COMPORTAMENTO ESPECÍFICO 1: ANTES E DEPOIS (AUTOMÁTICO) --- */
.visual-loop .marquee-wrapper {
    overflow: hidden; /* Trava o scroll manual */
    /* Efeito de fade nas bordas para ficar elegante */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.visual-loop .marquee-track {
    gap: 40px;
    /* A animação roda direto, sem pausa */
    animation: scroll 40s linear infinite; 
}

/* (A regra de pausar ao passar o mouse foi removida daqui) */


/* --- COMPORTAMENTO ESPECÍFICO 2: FEEDBACK (MANUAL) --- */
.feedback-loop .marquee-wrapper {
    /* Libera o dedo/mouse para arrastar */
    overflow-x: auto; 
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    
    /* Esconde barra de rolagem */
    scrollbar-width: none; 
}
.feedback-loop .marquee-wrapper::-webkit-scrollbar { display: none; }

.feedback-loop .marquee-track {
    gap: 30px;
    padding: 0 40px; /* Margem nas pontas */
    
    /* GARANTE QUE ESTEJA PARADO */
    animation: none; 
}

/* --- ANIMAÇÃO (Mantida) --- */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Cada Slide (Print) */
.slide {
    width: 280px; 
    flex: 0 0 auto; /* Impede encolhimento */
    
    /* O SEGREDO DO SNAP: Centraliza o item na tela ao parar de rolar */
    scroll-snap-align: center;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #222;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    
    /* Agora a opacidade é 100% sempre, pois o usuário quer ler */
    opacity: 1; 
}

.slide img:hover {
    border-color: #555;
    transform: scale(1.02);
}

/* A Animação de Rolar */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --- SEÇÃO SOCIAL PROOF (ELITE MEMBERS) --- */
.section-header { text-align: center; margin-bottom: 60px; }

.label-gold {
    color: #a58d71;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
}

.testimonial-card {
    background-color: #050505;
    border: 1px solid #222;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: #333;
    transform: translateY(-5px);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #333;
}

.profile-info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
}

.profile-info p {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.quote-body {
    position: relative;
    margin-bottom: 30px;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 3rem;
    color: #222;
    font-family: serif;
    z-index: 0;
}

.quote-body p {
    position: relative;
    z-index: 1;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
}

.stars {
    color: #a58d71;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.handle {
    font-size: 0.8rem;
    color: #444;
    font-family: var(--font-mono);
}


/* --- PLANOS (PRICING) --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    transition: 0.3s;
    
    /* --- A MÁGICA DO ALINHAMENTO --- */
    display: flex;          /* Transforma o card em flexbox */
    flex-direction: column; /* Organiza os itens um embaixo do outro */
    height: 100%;           /* Garante que o card ocupe toda a altura da linha do grid */
}

/* Isso garante que TANTO o botão outline quanto o primary (Ouro) vão pro fundo */
.price-card .btn-outline,
.price-card .btn-primary {
    margin-top: auto; /* Empurra o botão para o final do card (rodapé) */
}

.highlight-card {
    border: 1px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-color);
    border: 1px solid var(--border);
    padding: 5px 15px;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.neon {
    border-color: var(--accent);
    color: var(--accent);
    background: #000;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    font-family: var(--font-mono);
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.features li::before {
    content: "▹";
    color: var(--accent);
    margin-right: 10px;
}

.btn-outline {
    display: block;
    text-align: center;
    border: 1px solid var(--border);
    padding: 15px;
    /* margin-top: 30px; -> REMOVIDO para usar o 'auto' acima */
    font-size: 0.9rem;
    color: #fff;
    width: 100%; /* Garante que o botão ocupe a largura toda se precisar */
}

.btn-outline:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.full-width {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.desc-text {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 25px;
    font-style: italic;
    min-height: 40px;
}

.plan-subtitle {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Cores das Bordas dos Planos */
.border-bronze { border-color: #cd7f32 !important; }
.border-silver { border-color: #c0c0c0 !important; }
.border-gold   { border-color: #ffd700 !important; box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); }
.border-purple { border-color: #d86bf7 !important; }

.border-bronze:hover { box-shadow: 0 0 20px rgba(205, 127, 50, 0.2); }
.border-silver:hover { box-shadow: 0 0 20px rgba(192, 192, 192, 0.2); }
.border-gold:hover   { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
.border-purple:hover { box-shadow: 0 0 20px rgba(216, 107, 247, 0.2); }


/* --- FOOTER --- */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h4 { font-weight: 800; }
.brand p { font-size: 0.8rem; color: var(--text-secondary); }

.links a {
    margin-left: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsividade Básica */
@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .serif-title-large { font-size: 2.5rem; }

    .founder-features-grid { grid-template-columns: 1fr; }
    
    .pricing-grid { grid-template-columns: 1fr; }
    
    h1 { font-size: 2.5rem; }
}

/* --- NOVA GRID DE METODOLOGIA (4 ITENS) --- */

.grid-4 {
    display: grid;
    /* Cria 2 colunas de tamanho igual (Visual 2x2) */
    grid-template-columns: 1fr 1fr; 
    gap: 30px;
}

/* Ajuste fino nos Cards para ficarem uniformes */
.grid-4 .card {
    min-height: 280px; /* Garante que todos tenham a mesma altura */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.grid-4 .card h3 {
    font-size: 1.1rem; /* Um pouco menor para caber títulos longos */
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

/* Responsividade: No celular vira 1 coluna só */
@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* --- CORREÇÃO DOS BOTÕES NO CELULAR --- */
@media (max-width: 768px) {
    /* Seleciona o grupo onde os botões estão */
    .cta-group {
        display: flex;
        flex-direction: column; /* Empilha um embaixo do outro */
        gap: 15px; /* Adiciona espaço entre eles */
        align-items: center;
        width: 100%;
        padding: 0 20px; /* Garante que não encostem na borda da tela */
    }

    /* Ajusta o tamanho dos botões para preencherem a largura disponível */
    .btn-primary, .btn-secondary {
        display: block;
        width: 100%; /* Botão ocupa a largura toda */
        margin-left: 0; /* Remove a margem lateral antiga */
        margin-right: 0;
        box-sizing: border-box; /* Garante que o padding não estoure a tela */
    }
}