.hero-section {
    width: 100%;
    min-height: calc(100vh - 90px); /* Ocupa a tela toda menos o header */
    display: flex;
    align-items: center;
    padding-top: 40px; /* Reduzimos de 180px para 40px */
    padding-bottom: 60px;
    background-color: #FFFFFF;
}

/* O Container centraliza o conteúdo e dá margem nas laterais */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.hero-title {
    font-family: 'League Spartan', sans-serif !important;
    font-size: clamp(3.5rem, 8vw, 6rem) !important; /* Tamanho massivo */
    line-height: 0.9 !important;
    font-weight: 700;
    color: #111111;
    letter-spacing: -2px;
    margin: 0 0 30px 0;
}

.hero-title .blue {
    color: #0066FF !important;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.4rem !important;
    color: #666666;
    max-width: 600px;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Garante que os botões apareçam como blocos clicáveis */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-main {
    display: inline-block;
    background-color: #0066FF;
    color: #FFFFFF !important;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    padding: 20px 0;
    color: #111111;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}