/* MAIN INDEX PAGE */
main.index {
    height: 100vh; /* Ocupa toda la pantalla */
    display: flex;
    flex-direction: column;
}

main.index .masthead {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;  /* Centra vertical */
    justify-content: center; /* Centra horizontal */
    text-align: center;
    background-image: url('/img/permiso-circulacion-bg.webp'); /* Aquí tu imagen de fondo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Letras blancas */
}

main.index .masthead .container {
    position: relative;
    z-index: 2; /* Para que esté sobre el overlay */
}

main.index .masthead h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

main.index .masthead h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Overlay semitransparente para mejorar lectura */
main.index .masthead .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 46, 102, 0.6); /* Azul semitransparente estilo Soapex */
    z-index: 1;
}
