body {
    background-image: url("img/fondb.png");
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.titulo{
    margin-top: -8rem;
}

#principal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 5rem;
}

.formulario {
    width: 100%;
    max-width: 600px;
    flex: 1 1 500px;
    border-radius: 10px;
    border: 2px solid rgb(32, 36, 102);
    padding: 30px;
    background-color: rgb(230, 230, 230);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

#slider-container {
    flex: 1 1 500px;
    max-width: 600px;
}


.carousel-inner {
    border-radius: 10px;
    overflow: hidden;
}

.fotos {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.titulo h3 {
    text-align: center;
    font-size: 4rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-style: italic;
    color: rgb(32, 36, 102);
    text-shadow: 1px 2px black;
    margin-bottom: 10px;
}

#textoint {
    text-align: center;
    font-size: 2rem;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 1rem;
}

.inputformulario,
textarea,
select {
    background-color: #fbfbfb;
    width: 100%;
    max-width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 1px solid rgb(32, 36, 102);
    padding: 5px 10px;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
}

textarea {
    height: 100px;
    padding-top: 10px;
    resize: none;
}

.inputformulario:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #1e6bd1;
}

.formulario_grupo-btn-enviar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formulario_btn {
    width: 100%;
    max-width: 350px;
    height: 45px;
    line-height: 45px;
    background-color: rgb(233, 116, 6);
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    text-transform: upperc
}

@media screen and (max-width: 767px) {
    #slider-container {
        display: none;
    }

    .formulario {
        width: 100%;
        margin: 0 auto;
    }
    .titulo h3 {
    font-size: 2rem;
    }
    #textoint {
    font-size: 1rem;
}
}