

/* 1. ÁREA DE DESTAQUE (HERO) */
.hero-section {
    /* Aumentei o padding de 80px para 140px para dar mais margem superior/inferior */
    padding: 340px 0; 
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: #ffffff; /* Garante que todo texto base seja branco */
    position: relative;
}

/* Título principal e subtítulo */
.hero-section h1 {
    font-weight: 700;
    color: #ffffff !important; /* Força branco puro */
}
.hero-section p.lead {
    color: #f8f9fa !important; /* Branco levemente suave (off-white) para leitura */
    opacity: 0.9;
}

/* Lista de passos */
.steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}
.steps-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: center; /* Centraliza icone com texto */
    color: #ffffff; /* Texto dos passos em branco */
    font-size: 1.1rem;
}
.step-icon {
    background-color: #007bff;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0,123,255,0.6);
}

/* 2. CARD DE DOWNLOAD */
.download-card {
    background: #ffffff;
    color: #333; /* Texto dentro do card continua escuro para contraste com o fundo branco */
    border-radius: 16px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.download-card:hover {
    transform: translateY(-5px);
}

.btn-win-custom {
    background-color: #0078D7;
    color: white;
    padding: 18px 25px; /* Botão um pouco maior */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: background-color 0.2s;
    box-shadow: 0 4px 6px rgba(0,120,215,0.3);
}
.btn-win-custom:hover {
    background-color: #005a9e;
    color: white;
    text-decoration: none;
}