/* ================= HERO ================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* ocupa 100% da tela */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 59, 102, 0.5); /* azul escuro semi-transparente */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero .btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fca311;
    color: #0d3b66;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.hero .btn:hover {
    background: #fff;
    color: #0d3b66;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ================= HERO MOBILE ================= */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* reduz a altura da hero em mobile */
        padding: 40px 0; /* adiciona um pouco de respiro */
    }

    .hero h2 {
        font-size: 1.8rem; /* menor título */
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}