/* Estilo automático para a página: contato */
 #contato{
    padding: 60px 0;

    .box-formulario{
        border: 2px solid #D9D9D9;
        box-shadow: 0px 4px 10.4px 0px #00000040;
        padding: 40px;
        border-radius: 10px;
    }
    
    .sub-titulo {
        font-weight: 400;
        font-size: 18px;
        line-height: 160%;
        color: var(--cinza2)
    }

    .form-label {
        font-weight: 500;
        font-size: 17px;
        line-height: 160%;
        color: var(--azul);
    }
    .form-check-label {
        font-weight: 500;
        font-size: 16px;
        line-height: 160%;
        color: var(--cinza2);
    }
    .form-check {
        padding-left: 0px;
    }
    .form-check-input{
        border: solid 2px var(--vermelho);
    }

    .form-control{
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        border: 2px solid #000066;
        min-height: 50px;
        color: #000066;
    }
    .form-check-label {
        font-weight: 400;
        font-size: 15px;
        line-height: 140%;
    }
}
.swal2-styled.swal2-confirm {
    background-color: #000066 !important;
}

 #central{
    padding: 80px 0;
    background-color: var(--verde);

    .card-central {
        margin-top: 24px;
        border: 2px solid #000066;
        padding: 30px;
        text-align: center;
        border-radius: 8px;
        box-shadow: 4px 4px 8px 5px #4E4E4E0F;
        background-color: #fff;
        min-height: 210px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;

        .titulo-card-central {
            font-weight: 500;
            font-size: 20px;
            margin: 16px 0 8px;
            color: var(--azul);
        }
        .text-card-central {
            font-weight: 500;
            font-size: 16px;
            line-height: 160%;
            margin: 0;
            color: var(--azul);
        }
    }
 }

 #localizacao{
    padding: 80px 0;
    background-color: var(--verde);

    .text-localizacao{
        font-weight: 400;
        font-size: 18px;
        line-height: 140%;
        color: var(--cinza);
        margin-bottom: 24px;
    }
    
    iframe{
        width: 100%;
        height: 100%;
    }

    .btn-padrao{
        margin: 0 16px 0 0;
    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1200px) {
     
    #localizacao {
        .btn-padrao {
            margin: 0;
            display: block;
            text-align: center;
            margin-bottom: 20px;
            width: 100%;
        }
        iframe {
            width: 100%;
            height: 400px;
        }
    } 

}

/* MOBILE */
@media all and (max-width: 767px) { 
  
    #localizacao {
        .btn-padrao {
            margin: 0;
            display: block;
            text-align: center;
            margin-bottom: 20px;
        }
        iframe {
            width: 100%;
            height: 300px;
        }
    }
    #contato {
        .box-formulario {
            padding: 24px;
            border-radius: 10px;
            margin: 0;
        }

        .btn-padrao {
            width: 100%;
            display: block;
        }
    }
}

