/*
Theme Name: Fernando Bento 
Author: P3g4su (404 Society)
Description: Tema High-End para Advocacia Sucessória. 
Version: 0.02.1(beta)
*/

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Montserrat:wght@300;400;500&display=swap');

:root {
    /* Paleta "Old Money" */
    --gold-primary: #C5A059;       /* Ouro Sóbrio */
    --gold-light: #E5C585;         /* Champagne */
    --gold-dark: #8A6E36;          /* Bronze */
    --void: #050505;               /* Preto Rico */
    --surface: #0F0F0F;            /* Cinza Profundo */
    
    /* Tipografia */
    --font-heading: 'Italiana', serif;      /* Elegante, fina, larga */
    --font-body: 'Montserrat', sans-serif;  /* Leitura técnica limpa */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--void);
    color: #E0E0E0;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- TIPOGRAFIA DE ELITE --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
}

/* Clamp: A mágica que impede o texto de quebrar no mobile */
h1 { font-size: clamp(2.8rem, 5vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; color: var(--gold-primary); letter-spacing: 0.05em; margin-bottom: 0.5rem; }
p { font-size: clamp(0.95rem, 1.2vw, 1.1rem); color: #999; margin-bottom: 1.5rem; }

/* Texto Dourado Realista (Gradiente Metálico) */
.luxury-text {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- BOTÕES HIGH TICKET --- */
.btn-billion {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: linear-gradient(to right, rgba(197, 160, 89, 0) 50%, rgba(197, 160, 89, 0.1) 100%);
    background-size: 200% 100%;
    background-position: left bottom;
}

.btn-billion:hover {
    border-color: var(--gold-primary);
    color: #fff;
    background-position: right bottom;
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.15);
}

/* --- ESTRUTURA --- */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
}

.grid-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

/* --- DECORAÇÃO SUTIL --- */
.divider {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    margin: 2rem 0;
    opacity: 0.6;
}

/* Cards sem bordas agressivas */
.feature-item {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- ANIMAÇÕES DE SCROLL (REVEAL) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBILE OPTIMIZATION (CRÍTICO) --- */
@media (max-width: 992px) {
    .section-full { min-height: auto; padding: 5rem 0; }
    
    .grid-cols {
        grid-template-columns: 1fr; /* Força coluna única */
        gap: 4rem;
    }
    
    /* Garante que nada toque na borda da tela */
    .container { padding: 0 1.5rem; }
    
    /* Ajustes visuais */
    .btn-billion { width: 100%; text-align: center; }
    .divider { margin: 1.5rem 0; }
}