.hero {
    background-image: url("../img/fundo1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

/* Overlay em gradiente: mais escuro à esquerda (onde está o texto),
   mais transparente à direita (onde está a foto/logo) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.75) 0%,
        rgba(10, 10, 10, 0.55) 35%,
        rgba(10, 10, 10, 0.15) 65%,
        rgba(10, 10, 10, 0) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Texto com "borda" via text-shadow para estabilidade visual */
.hero-text h1 {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.6);
}

.hero-text h3 {
    color: #ffcc00; /* dourado, mantendo identidade visual */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-text .lead {
    color: #f1f1f1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}