/* ==========================================================================
    CSS/STYLE-GLOBAL.CSS - ESTILOS BASE E RESET (CORREÇÃO DA TELA BRANCA)
    ========================================================================== */
:root {
    /* Cores TIM PJ */
    --color-tim-blue-dark: #000033;
    --color-tim-red: #ff0000;
    --color-tim-yellow: #ffcc00;
    --color-text-light: #ffffff;
    --color-text-subtle: #cccccc;
    --color-bg-promo: #00004d;
    --color-bg-solutions: #1a1a40;
}

/* Reset Básico e Fundo Escuro */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    /* Define o fundo escuro imediatamente */
    background-color: var(--color-tim-blue-dark); 
    color: var(--color-text-light); 
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Estilos de Tipografia */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Container de Conteúdo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Botões Genéricos (usados na Seção 2) */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.btn-primary { /* Adquirir Agora (Verde) */
    background-color: #00b33c; 
    color: white;
    box-shadow: 0 4px 10px rgba(0, 179, 60, 0.4);
}

.btn-primary:hover {
    background-color: #009933;
    transform: translateY(-1px);
}

.btn-secondary { /* Veja Todas Ofertas (Amarelo/Ouro) */
    background-color: #d4ac00;
    color: white;
    box-shadow: 0 4px 8px rgba(212, 172, 0, 0.4);
}

.btn-secondary:hover {
    background-color: #b89400;
    transform: translateY(-1px);
}