
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.outfit-light {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.outfit-regular {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.outfit-bold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}


.outfit-black {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.vermelho{
    color: #A30D0D;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
    background: #fff9ea;
}

.corpo-site{
    width: 100%;
    padding: 0px 120px;
}


/*** TOPO ***/

header{
    min-height: 60px;
    width: 100%;
}

header .topo{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 120px 15px 120px;
}

header a{
    color: black;
    text-decoration: none;
}

header a:hover{
    color: black;
}

header .topo img{
    width: 170px;
}

header .topo .menu-desktop ul{
    display: flex;
    gap: 60px;
    list-style: none;
    align-items: center;
}

header .topo .menu-desktop ul li:last-child{
    background: #730404;
    padding: 4px 10px;
    border-radius: 5px;
}

header .topo .menu-desktop ul li:last-child a{
    color: white;
}

header .icon-menu{
    display: none;
}

header .menu-mobile{
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100dvh;
    display: none;
    transition: 0.15s ease-in-out;
}

header .active-menu-mobile{
    width: 100%;
    transition: 0.2s ease-in-out;
}

header .menu-mobile .topo-menu{
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

header .menu-mobile .topo-menu .icon-close{
    color: white;
    background: #730404;
    padding: 3px;
    border-radius: 5px;
}

header .menu-mobile .topo-menu img{
    width: 145px;
    height: auto;
}

header .menu-mobile .linha-menu{
    width: 100%;
    height: 1px;
    background: #a3a3a3;
    margin: 0px 0px 20px 0px;

}

header .menu-mobile .body-menu{
    padding: 0px 22px;
}

header .menu-mobile .body-menu ul{
    display: flex;
    font-size: 1.5rem;
    align-items: start;
    gap: 15px;
    flex-direction: column;
    width: 100%;
}

header .menu-mobile .body-menu li{
    width: 100%;
}

header .menu-mobile .body-menu ul a{
    position: relative;
    width: 100%;
    display: block;
}

header .menu-mobile .body-menu ul a .seta{
    position: absolute;
    right: 0;
}

@media(max-width: 1150px){

    header .topo{
        padding: 10px 20px 15px 20px;
    }

    header .menu-desktop{
        display: none;

    }

    header .icon-menu{
        display: block;
    }

    header .menu-mobile{
        display: flex;
        flex-direction: column;
        background: white;
        z-index: 10;
    }

    header .menu-mobile ul{
        list-style: none;
    }

    .corpo-site{
        padding: 0px 20px;
    }

}

/*** SLIDE ***/


.main-slide{
    width: 100%;
    max-height: 630px;
    aspect-ratio: 1920 / 642;
}

.wrapper, .slide{
    position: relative;
    width: 100%;
    height: 100%;
}

.slide{
    overflow: hidden;
}

.slide .image{
    height: auto;
    width: 100%;
    object-fit: cover;
}

.slide .image-mob{
    height: auto;
    width: 100%;
    object-fit: cover;
    display: none;
}


.swiper-pagination-bullet{
    opacity: 1!important;
    height: 13px!important;
    width: 13px!important;
    background-color: rgba(255, 255, 255, 0.726)!important;
}

.swiper-pagination-bullet-active{
    background-color: #730404!important;
}


@media (max-width: 550px){

    .main-slide{
        aspect-ratio: 550 / 350;
    }

    .slide .image{
        display: none;
    }

    .slide .image-mob{
        display: block;
    }
}


/*** HOME ***/

/*** INSTITUCIONAL ***/
.sobre-institucional-home{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 100px;
    padding-bottom: 200px;
}

.sobre-institucional-home img{
    width: 350px;
    height: auto;
}

.sobre-institucional-home .box-texto{
    width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sobre-institucional-home .box-texto h1{
    color: #730404;
    font-size: 2.5rem;
    width: 100%;
}

.sobre-institucional-home .box-texto p{
    font-size: 1.5rem;
    width: 100%;
}

.sobre-institucional-home .box-texto a{
    background: #730404;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    padding: 6px 10px;
    border-radius: 5px;
    margin-top: 25px;
}

@media (min-width: 700px) and (max-width: 1150px){

    .sobre-institucional-home img{
        width: 250px;
        height: auto;
    }

    .sobre-institucional-home .box-texto{
        width: 450px;
    }

    .sobre-institucional-home .box-texto h1{
        font-size: 1.8rem;
    }

    .sobre-institucional-home .box-texto p{
        font-size: 1.1rem;
    }

    .sobre-institucional-home .box-texto a{
        font-size: 0.9rem;
        margin-top: 15px;
    }

}

@media (max-width: 699px){

    .sobre-institucional-home{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .sobre-institucional-home img{
        width: 250px;
    }

    .sobre-institucional-home .box-texto{
        width: 100%;
    }

    .sobre-institucional-home .box-texto h1{
        font-size: 1.8rem;
    }

    .sobre-institucional-home .box-texto p{
        font-size: 1.1rem;
    }

    .sobre-institucional-home .box-texto a{
        font-size: 0.9rem;
        margin-top: 15px;
    }

}

/*** CONSULTE ***/
.consulte-transparencia-home{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 200px;
}

.consulte-transparencia-home .box{
    position: relative;
    width: 1100px;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0px 0px 6px 10px rgba(209, 209, 209, 0.664);

}


.consulte-transparencia-home .box > div{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 60px;
    gap: 40px;
}

.consulte-transparencia-home .box div .box-texto p{
    font-size: 1.7rem;

}

.consulte-transparencia-home .box div .box-texto a{
    background: #7C238C;
    padding: 0px 4px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
}

.consulte-transparencia-home .box div img{
    width: 360px;
}

@media (min-width: 700px) and (max-width: 1150px){

    .consulte-transparencia-home .box{
        width: 700px;
    }

    .consulte-transparencia-home .box div .box-texto p {
        font-size: 1.2rem;
    }

    .consulte-transparencia-home .box div img{
        width: 200px;
    }

}

@media (max-width: 699px){

    .consulte-transparencia-home{
        padding-bottom: 100px;
    }

    .consulte-transparencia-home .box{
        width: 300px;
    }

    .consulte-transparencia-home .box > div{
        flex-direction: column-reverse;
        padding: 20px 22px;
    }

    .consulte-transparencia-home .box div .box-texto p{
        font-size: 1rem;
    }

    .consulte-transparencia-home .box div img{
        width: 200px;
    }

}

/*** DOAR ***/

.doar-home{
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    margin: 100px 0px 200px 0px;
}

.doar-home::after{
    content: "";
    position: absolute;
    top: -80px;
    width: 100px;
    height: 10px;
    left: calc(100% - 50);
    background: #A30D0D;
}

.doar-home::before{
    content: "";
    position: absolute;
    bottom: -80px;
    width: 100px;
    height: 10px;
    left: calc(100% - 50);
    background: #A30D0D;
}

.doar-home .box-1{
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doar-home .box-1 h1{
    font-size: 2.5rem;
}

.doar-home .box-1 > span{
    font-size: 2rem;
}

.doar-home .box-2{
    width: 275px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.doar-home .box-2 img{
    width: 245px;

}

.doar-home .box-3{
    width: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.doar-home .box-4{
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doar-home .box-4 h1{
    font-size: 2rem;
}

.doar-home .box-4 span{
    font-size: 1.2rem;
}

@media (min-width: 700px) and (max-width: 1150px){

    .doar-home{
        flex-direction: column;
        align-items: center;
    }

    .doar-home .box-1{
        text-align: center;
    }

    .doar-home .box-1 > span {
        font-size: 1.6rem;
        margin: 15px;
    }

    .doar-home .box-2{
        justify-content: center;
    }

    .doar-home .box-3{
        margin: 10px 0px;
    }

    .doar-home .box-4{
        text-align: center;
    }

    .doar-home .box-4 > span{
        margin-top: 15px;
    }

}


@media(max-width: 699px){

    .doar-home{
        flex-direction: column;
        align-items: center;
        margin: 100px 0px 140px 0px;
    }

    .doar-home .box-1{
        text-align: center;
        width: 300px;
    }

    .doar-home .box-1 h1{
        font-size: 1.5rem;
    }

    .doar-home .box-1 > span {
        font-size: 1.2rem;
        margin: 15px;
    }

    .doar-home .box-2{
        justify-content: center;
    }

    .doar-home .box-3{
        margin: 10px 0px;
    }

    .doar-home .box-4{
        text-align: center;
    }

    .doar-home .box-4 h1{
        font-size: 1.5rem;
    }

    .doar-home .box-4 > span{
        font-size: 1.2rem;
        margin-top: 15px;
    }

}

/*** DOE NOTA PAULISTA ***/

.doe-nota-paulista{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
}

.doe-nota-paulista .box-paulista{
    width: 1100px;
}

.doe-nota-paulista .box-paulista img{
    width: 100%;
    height: auto;
}

.doe-nota-paulista .img-mobile{
    display: none;
}


@media (max-width: 1150px){

    .doe-nota-paulista{
        padding: 100px 0px;
    }

    .doe-nota-paulista .box-paulista{
        width: 100%;
    }
}

@media (max-width: 550px){

    .doe-nota-paulista .img-desktop{
        display: none;
    }

    .doe-nota-paulista .img-mobile{
        display: block;
    }

}

/*** FORMULÁRIO ***/

.formulario-home{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
}

.formulario-home .box-img{
    width: 500px;
}

.formulario-home .box-img img{
    width: 375px;
}

.formulario-home .box-formulario{
    width: 600px;
}

.formulario-home .box-formulario form{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.formulario-home .box-formulario form .input-grupo2{
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.formulario-home .box-formulario form .input-grupo{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.formulario-home .box-formulario form input,
.formulario-home .box-formulario form textarea{
    background: transparent;
    border: none;
    border-bottom: 1px solid #730404;
    padding: 0.25rem ;
}

.formulario-home .box-formulario form input:focus,
.formulario-home .box-formulario form textarea:focus{
    outline: none;
    /* border: none; */
}

.formulario-home .box-formulario form label,
.formulario-home .box-formulario form input{
    font-size: 1.2rem;
}

.formulario-home .box-formulario h1{
    font-size: 2.1rem;
    color: #730404;
    margin-bottom: 35px;
}

@media (min-width:700px) and (max-width: 1150px){

    .formulario-home{
        flex-direction: column;
        padding: 70px 0px 100px 0px ;
    }

    .formulario-home .box-img img{
        width: 100%;
    }

    .formulario-home .box-img{
        width: 355px;
        margin-bottom: 50px;
    }

}

@media (max-width: 699px){
    .formulario-home{
        flex-direction: column;
        padding: 70px 0px 100px 0px ;
    }


    .formulario-home .box-img img{
        width: 100%;
    }

    .formulario-home .box-img{
        width: 300px;
        margin-bottom: 50px;
    }

    .formulario-home .box-formulario {
        width: 100%;
    }

}

/*** SEDES ***/

.sedes-home{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0px 50px 0px;
}

.sedes-home > div{
    width: 1100px;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 40px;
    flex-wrap: wrap;
}

.sedes-home .sede{
    width: 250px;
    text-align: center;
    background: rgba(209, 209, 209, 0.664);
    box-shadow: 0px 0px 6px 10px rgba(209, 209, 209, 0.664);
}

.sedes-home .sede span{
    font-size: .9rem;
    color: #730404;
}

@media (min-width: 700px) and (max-width: 1150px){
    .sedes-home > div{
        width: 600px;
    }
}

@media (max-width: 699px){
    .sedes-home > div{
        width: 100%;
        justify-content: center;
    }

    .sedes-home .sede{
        width: 300px;
    }
}

/* .sedes-home .sede b{

} */

/*** RODAPÉ ***/

footer{
    background: #730404;
    width: 100%;
    display: flex;
    justify-content: center;
    color: white;
    padding: 20px 0px;
}

footer .rodape{
    width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .rodape .linha{
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.568);
    margin: 10px 0px;
}

footer .rodape .box-logo{
    width: 300px;
    display: flex;
    flex-direction: column;
}

footer .rodape .box-logo img{
    width: 200px;
}

footer .rodape .box-logo span{
    font-size: 1rem;
}

footer .rodape .box-info{
    width: 310px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 699px){
    footer .rodape{
        flex-direction: column;
        align-items: center;

    }

    footer .rodape .box-logo{
        width: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    footer .rodape .box-info{
        width: 300px;
        align-items: center;
        text-align: center;
    }
}


/*** INSTITUCIONAL ***/

.capa {
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: start;
    align-items: center;
    /* margin-left: 20px; */
    background: url(../imagens/Capa-Pag.png);
    background-size: cover;
    margin: 40px 0px;
}

.capa h1{
    color: white;
    margin-left: 40px;
}

.main-institucional{
    width: 1100px;
}

.main-institucional .bloco-1 img{
    width: 100%;
}

.main-institucional .bloco-1 p{
    position: relative;
    text-align: center;
    padding: 0px 100px;
    font-size: 1.6rem;
    margin: 80px 0px;
}

.main-institucional .bloco-1 p::after{
    content: "";
    position: absolute;
    top: -40px;
    width: 200px;
    height: 3px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
    left: calc(50% - 100px);
}

.main-institucional .bloco-1 p::before{
    content: "";
    position: absolute;
    bottom: -40px;
    width: 500px;
    height: 3px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
    left: calc(50% - 250px);
}

.main-institucional .bloco-2{
    margin: 40px 0px;
}

.main-institucional .bloco-2 h1{
    text-align: center;
    color: #730404;
}

.main-institucional .unidade,
.main-institucional .info-instucional{
    margin-top: 50px;
}

.main-institucional .unidade h2,
.main-institucional .info-instucional h2{
    color: #730404;
    font-size: 1.5rem;
}

.main-institucional .unidade p,
.main-institucional .info-instucional p{
    font-size: 1.4rem;
}

.main-institucional .unidade b{
    margin-top: 10px;
}

.main-institucional .bloco-3{
    margin-top: 120px;
    position: relative;
    margin-bottom: 40px;
}

.main-institucional .bloco-3::after{
    position: absolute;
    content: "";
    top: -60px;
    width: 500px;
    height: 3px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(115,4,4,1) 50%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
    left: calc(50% - 250px);
}

.main-institucional .bloco-3 a{
    color: #730404;
    text-decoration: none;
}

.main-institucional .bloco-3 a:hover{
    text-decoration: underline;
}


@media (min-width: 700px) and (max-width: 1100px){
    .main-institucional{
        width: 700px;
    }
}

@media (max-width: 699px){
    .main-institucional{
        width: 100%;
    }

    .main-institucional .bloco-1 p{
        padding: 0px 15px;
        font-size: 1.2rem;
    }

    .main-institucional .bloco-2 h1{
        font-size: 1.7rem;
    }

    .main-institucional .unidade h2,
    .main-institucional .info-instucional h2{
        font-size: 1.3rem;
    }

    .main-institucional .unidade p,
    .main-institucional .info-instucional p{
        font-size: 1rem;
    }

}

/*** TRANSPARÊNCIA ***/


.main-transparencia {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 80px;
}

.main-transparencia .bloco-1{
    display: flex;
    align-items: center;
    width: 1100px;
}

.main-transparencia .bloco-1 img{
    width: 200px;
}

.main-transparencia .bloco-1 p{
    width: 900px;
    font-size: 1.5rem;
    padding-left: 35px;
}

.main-transparencia .relatorios{
    display: flex;
    justify-content: space-between;
    width: 1100px;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
    margin-top: 40px;
}

.main-transparencia .relatorios a{
    width: 450px;
    font-size: 1.3rem;
    color: black;
    text-decoration: none;
    position: relative;
}

.main-transparencia .relatorios a::after{
    content: "";
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: -5px;
    height: 2px;
    background: #730404;
}

@media(max-width: 1100px){

    .main-transparencia .bloco-1{
        width: 100%;
        flex-direction: column;
    }

    .main-transparencia .bloco-1 p{
        width: 100%;
    }

    .main-transparencia .relatorios{
        width: 100%;
    }

    /* .main-transparencia .relatorios a{
        width: 350px;
    } */

}