/*Barra de cabecera */
.barra {
    position: relative;
    background-image: url("../img/banner_reclamos.jpg");
    background-color: var(--principal);
    background-size: cover;
    background-position: bottom;
    height: 200px;
}

.barra::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 176, 164, 0.9);
}

.barra_contenido {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.barra .barra_contenido > h1 {
    z-index: 1;
    color: var(--blanco);
   
}

/* Estilo de caja de texto */
.mb-3 > .form-control, .form-select{
    border-radius: 8px;
    font-weight: 700;
    color: var(--oscuro);
}

/* Estilo de etiqueta */
.mb-3 > label{
    font-weight: 700;
    color: var(--oscuro);
}

/* Estilo de parrafo */
.mb-3 > p{
    font-size: 0.8rem;
    text-align: justify;
}

/* Marhenes y estilo de contenedor */
main > .container{
    background: var(--gris);
    border-radius: 32px;
    padding: 32px;
}

/* Versión Mobile 600px */
@media only screen and (max-width: 600px) {
    main > .container{
    border-radius: unset;
    padding: 0 32px;
    background: transparent;
    }
    .barra .barra_contenido > h1{
        font-size: 2rem;
    }
}

/* Versión Tablet  1024px */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    main > .container{
        border-radius: unset;
        padding: 0 64px;
        background: transparent;
        }
}
