/* ==========================================================================
   VOBE - DESIGN SYSTEM EXPERT (ALTA DEFINIÇÃO & AURORA GRID)
   ========================================================================== */
:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    
    --bg-base: #f8fafc;
    --bg-white-glass: rgba(255, 255, 255, 0.75); /* Aumentado para mais nitidez */
    --bg-dark: #0f172a;
    
    /* Bordas mais definidas e nítidas (Maior DPI visual) */
    --border-color: rgba(203, 213, 225, 0.9);
    --border-glass: rgba(255, 255, 255, 0.8);
    
    --text-heading: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    
    --success: #10b981;
    --warning: #f59e0b;

    /* Sombras Fotográficas Premium */
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }

/* OTIMIZAÇÃO DE NITIDEZ EXTREMA (DPI) */
body { 
    background-color: var(--bg-base); 
    color: var(--text-body); 
    line-height: 1.7; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; 
    text-rendering: geometricPrecision; /* Fontes super nítidas */
    position: relative; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 10; }

h1, h2, h3, h4 { color: var(--text-heading); line-height: 1.2; letter-spacing: -0.03em; }

/* ==========================================================================
   FUNDO "AURORA DOT-GRID"
   ========================================================================== */
.bg-pattern {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -3;
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}

.bg-aurora {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2;
    overflow: hidden; pointer-events: none;
}

.aurora-glow {
    position: absolute; border-radius: 50%;
    filter: blur(90px); opacity: 0.6;
    animation: floatGlow 20s infinite alternate ease-in-out;
}

.aurora-1 { width: 700px; height: 700px; top: -10%; left: 0%; background: rgba(37, 99, 235, 0.15); animation-delay: 0s; }
.aurora-2 { width: 600px; height: 600px; bottom: -10%; right: 5%; background: rgba(139, 92, 246, 0.12); animation-delay: -5s; }
.aurora-3 { width: 500px; height: 500px; top: 30%; left: 40%; background: rgba(16, 185, 129, 0.1); animation-delay: -10s; }

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, 40px) scale(1.1); }
    100% { transform: translate(-40px, -60px) scale(0.9); }
}

/* HEADER */
header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); background: transparent; }
header.scrolled { background: rgba(255, 255, 255, 0.90); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-color); padding: 12px 0; box-shadow: var(--shadow-sm); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; font-weight: 900; color: var(--text-heading); letter-spacing: -1px; }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { color: var(--text-body); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* ==========================================================================
   BOTÕES PADRONIZADOS E SIMÉTRICOS
   ========================================================================== */

/* Botão do Header (Portal do Cliente com Contorno nítido) */
.btn-header-outline {
    background: transparent;
    color: var(--text-heading);
    border: 1.5px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-header-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

/* A MÁGICA: Botões da seção Hero perfeitamente iguais em tamanho */
.btn-hero {
    width: 250px !important;
    min-width: 250px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    justify-content: center !important;
    text-align: center !important;
}

.btn-primary { 
    background: var(--primary); 
    color: #fff; 
    padding: 0 32px; 
    height: 54px; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 1.05rem; 
    transition: 0.3s; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25); 
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35); }

.btn-outline { 
    background: rgba(255,255,255,0.85); 
    backdrop-filter: blur(8px); 
    color: var(--text-heading); 
    padding: 0 32px; 
    height: 54px; 
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 1.05rem; 
    border: 1.5px solid var(--border-color); 
    transition: 0.3s; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    box-shadow: var(--shadow-sm); 
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* UTILITÁRIOS VISUAIS */
.badge { display: inline-block; padding: 6px 16px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); color: var(--primary); border-radius: 100px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; border: 1px solid #bfdbfe; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: var(--shadow-sm);}
.section-padding { padding: 120px 0; }
.section-title { text-align: center; margin-bottom: 80px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-title h2 { font-size: 3rem; font-weight: 800; margin-bottom: 24px; }
.section-title p { font-size: 1.2rem; color: var(--text-body); line-height: 1.6; }

/* ANIMAÇÕES */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; } .delay-2 { transition-delay: 0.3s; }

/* Z-PATTERN / FOTOGRAFIAS */
.z-row { display: flex; align-items: center; gap: 60px; margin-bottom: 140px; position: relative; }
.z-row:nth-child(even) { flex-direction: row-reverse; text-align: left; }
.z-row:last-child { margin-bottom: 0; }
.z-text { flex: 1; background: var(--bg-white-glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 50px; border-radius: 20px; border: 1px solid var(--border-glass); box-shadow: var(--shadow-md); position: relative; z-index: 2; }
.z-row:nth-child(odd) .z-text { transform: translateX(40px); }
.z-row:nth-child(even) .z-text { transform: translateX(-40px); }
.z-text h3 { font-size: 2.3rem; font-weight: 800; margin-bottom: 24px; }
.z-text p { font-size: 1.1rem; color: var(--text-body); margin-bottom: 32px; line-height: 1.7; }
.z-list li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; font-weight: 500; font-size: 1rem; color: var(--text-heading); }
.z-list .icon-wrap { background: var(--primary-light); color: var(--primary); padding: 8px; border-radius: 50%; display: flex; flex-shrink: 0; }
.z-visual { flex: 1.3; position: relative; z-index: 1; }
.z-visual img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); object-fit: cover; display: block; height: 500px; transition: transform 0.5s ease; }
.z-visual:hover img { transform: scale(1.02); }

/* BENTO GRID (RECURSOS) */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bento-card { padding: 40px; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 20px; border: 1px solid var(--border-glass); box-shadow: var(--shadow-sm); transition: 0.3s ease; }
.bento-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #cbd5e1; background: rgba(255, 255, 255, 0.98); }
.b-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; font-size: 32px; background: #f1f5f9; color: var(--text-heading); }
.bento-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.bento-card p { font-size: 1.05rem; color: var(--text-body); line-height: 1.6; }

/* ESTATÍSTICAS */
.stats-wrap { background: var(--bg-dark); padding: 80px 0; margin-top: 60px; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h4 { font-size: 3.5rem; font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -2px; }
.stat-item p { color: var(--text-muted); font-size: 1.1rem; font-weight: 500; }

/* PREÇOS */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.price-card { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-glass); border-radius: 20px; padding: 50px 40px; transition: 0.3s; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); background: #fff; }
.price-card.pro { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: var(--shadow-md); position: relative; background: #fff; }
.price-card.pro:hover { transform: scale(1.05) translateY(-5px); }
.badge-pro { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 6px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.p-price { font-size: 3.5rem; font-weight: 900; color: var(--text-heading); display: flex; align-items: flex-start; margin: 20px 0; letter-spacing: -2px; }
.p-price span { font-size: 1.2rem; color: var(--text-muted); margin-top: 15px; margin-right: 6px; letter-spacing: normal; }
.p-list { margin-bottom: 40px; border-top: 1px solid var(--border-color); padding-top: 30px; flex-grow: 1; }
.p-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 1.05rem; font-weight: 500; color: var(--text-heading); }
.p-list .material-icons-round { color: var(--primary); font-size: 22px; }

/* Força os botões dentro dos cards de preço a ficarem sempre alinhados na base com largura total */
.price-card .btn-primary, .price-card .btn-outline {
    margin-top: auto; 
    width: 100% !important;
    min-width: 100% !important;
}

/* CTA FINAL */
.cta-box { background: var(--primary); border-radius: 24px; padding: 100px 40px; text-align: center; color: white; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;}
.cta-box::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); z-index: 0; pointer-events: none;}
.cta-box > * { position: relative; z-index: 1; }

/* FOOTER */
footer { padding: 100px 0 40px; background: rgba(248, 250, 252, 0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border-color); position: relative;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 80px; }
.footer-brand p { color: var(--text-body); font-size: 1.05rem; margin-top: 20px; max-width: 320px; line-height: 1.7; }
.footer-col h4 { color: var(--text-heading); font-size: 1.1rem; margin-bottom: 24px; font-weight: 800; }
.footer-col ul li { margin-bottom: 16px; }
.footer-col a { color: var(--text-body); font-size: 1rem; font-weight: 500; transition: 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 40px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }

@media (max-width: 1024px) {
    .z-row, .z-row:nth-child(even) { flex-direction: column; text-align: left; gap: 30px; margin-bottom: 80px;}
    .z-row:nth-child(odd) .z-text, .z-row:nth-child(even) .z-text { transform: none; padding: 30px; width: 100%;}
    .z-visual img { height: auto; max-height: 350px;}
    .bento-grid, .pricing-grid, .stats-grid { grid-template-columns: 1fr; }
    .price-card.pro { transform: none; }
    .price-card.pro:hover { transform: translateY(-5px); }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 768px) {
    /* Em mobile, os botões ocupam a largura inteira */
    .btn-primary, .btn-outline, .btn-hero { width: 100% !important; min-width: unset !important; }
}