/* ========================================
   ESSENTIA - Product Specific Overrides
   Consolidado do CSS inline
   ======================================== */

/* Reset básico */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--color-bg-soft, #FAFBFC); 
    color: var(--color-text-primary, #1A202C);
    overflow-x: hidden;
}

/* Tipografia específica Essentia */
.font-mono { 
    font-family: 'JetBrains Mono', monospace; 
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-primary, #1A202C);
    margin-bottom: 1.5rem;
}

h1 .highlight { 
    color: var(--color-accent, #00B386);
}

@media (min-width: 768px) { 
    h1 { font-size: 3.75rem; } 
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-secondary, #4A5568);
    margin-bottom: 2rem;
    max-width: 36rem;
}

@media (min-width: 768px) { 
    .hero-subtitle { font-size: 1.25rem; } 
}

.btn-primary-essentia {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-accent, #00B386);
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(0,179,134,0.39);
    transition: all 0.3s;
    text-align: center;
    min-height: 44px;
}

@media (hover: hover) {
    .btn-primary-essentia:hover {
        background: var(--color-accent-strong, #008F6B);
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0,179,134,0.23);
    }
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-tertiary, #718096);
    margin-top: 1.5rem;
}

.hero-checks span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

section { 
    padding: 5rem 1.5rem; 
}

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary, #1A202C);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) { 
    h2 { font-size: 2.5rem; } 
}
