/* Estilo automático para a página: contato */
 
#contato {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 100px 0;
    background-image: url(../img/bg-contato.svg);

    h3{
        text-align: center;
        color: var(--azul-texto, #060B35);
    }
    
    h2{
        text-align: center;
        color: var(--azul-texto, #060B35);
        margin: 16px 0 40px;
    }

    .form-contato {
        border-radius: 20px;
        border: 1px solid var(--traado, #CAD9F0);
        background: var(--branco);
        box-shadow: 0 4px 10px 0 rgba(35, 90, 235, 0.20);
        padding: 32px 30px;

        label{
            font-weight: 500;
            font-size: 18px;
            line-height: 20px;
            letter-spacing: 0px;
            margin-bottom: 8px;
        }
        .form-control {
            font-weight: 500;
            font-size: 16px;
            line-height: 20px;
            vertical-align: middle;
            border-radius: 30px;
            color: #060B3566;
            height: 60px;
        }
        .form-select {
            font-weight: 500;
            font-size: 16px;
            line-height: 20px;
            vertical-align: middle;
            border-radius: 30px;
            color: #060B3566;
            height: 60px;
        }
        textarea{
            height: 120px !important;
            padding: 20px 20px;
        }

        .btn{
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            letter-spacing: 0px;
            text-align: center;
            border-radius: 30px;
            padding: 14px 32px;
            margin: 0 10px;
        }

        .form-check{
             label {
                color: var(--azul-texto, #060B35);
                font-size: 16px;
                font-weight: 500;
                line-height: 24px;
                margin: 0;
            }
        }

        .alinhamento-final{
            display: flex;
            justify-content: flex-end;
        }

        .btn-pesquisar{
            background-color: var(--azul-secundrio);
            color: var(--branco);

                &:hover{
                    background-color: #1D4ED2 !important;
                }
        }
        .btn-limpar{
            background-color: #E4F7FD !important;
            color: var(--azul-texto);
            border-radius: 30px;
            
                &:hover{
                    background-color: var(--azul-mais-claro) !important;
                }
        }
    }
    .link-pol{
        text-decoration: underline;
    }
    
    input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #b4b4b4 !important;
    }
    input::-moz-placeholder { /* Firefox 19+ */
        color: #b4b4b4 !important;
    }
    input:-ms-input-placeholder { /* IE 10+ */
        color: #b4b4b4 !important;
    }
    input:-moz-placeholder { /* Firefox 18- */
        color: #b4b4b4 !important;
    }
    textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #b4b4b4 !important;
    }
    textarea::-moz-placeholder { /* Firefox 19+ */
        color: #b4b4b4 !important;
    }
    textarea:-ms-input-placeholder { /* IE 10+ */
        color: #b4b4b4 !important;
    }
    textarea:-moz-placeholder { /* Firefox 18- */
        color: #b4b4b4 !important;
    }
}


#localizacao{
    padding: 0 0 80px 0;

    h3{
        text-align: center;
        color: var(--azul-texto, #060B35);
    }
    
    h2{
        text-align: center;
        color: var(--azul-texto, #060B35);
        margin: 16px 0 40px;
    }

    .end-local {
        color: var(--azul-tercirio, #051E73);
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }

    iframe{
        border-radius: 20px;
        background: url(<path-to-image>) lightgray 50% / cover no-repeat;
        width: 100%;
        height: 400px;
    }

    hr{
        color: #CAD9F0;
    }

    .nav-pills {
        display: flex;
        gap: 4px; /* espaçamento entre os botões */
    }

    .nav-pills .nav-item {
        flex: auto;
    }

    .nav-pills .nav-link {
        width: 100%;
        border-radius: 100px;
        background: #E4F7FD;
        color: #060B35;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;
        padding: 15px 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        background: var(--azul-secundrio, #235AEB);
        color: #fff;

        img{
            filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(58deg) brightness(105%) contrast(102%);
        }
    }

}

/* TABLET */
@media (min-width: 768px) and (max-width: 970px) {

}


/* MOBILE */
@media all and (max-width: 767px) {


    #contato {
        background-color: var(--azul-mais-claro);
        padding: 40px 15px;
            
        h2{
            text-align: left;
            margin: 20px 0;
        }
        h3{
            text-align: left;
        }

        .form-contato {
            border: none;
            background: none;
            box-shadow: none;
            padding: 0;
            
            .btn-limpar {
                background-color: var(--azulAcizentado) !important;

            }
        }
    }

    #localizacao {
        padding: 60px 15px;

        .nav-pills {
            gap: 8px;
            flex-direction: column;
        }

    }


}