body {
    background-image: linear-gradient(-120deg, #17bcbc, #0e7272);
    background-attachment: fixed;

}

.topo {
    display: flex;
    width: 100%;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*background-color: #f5f5f5;*/
}

.card{
    z-index: 1;
}

#botao_contato {
    background-image: url("../img/Entre_em_contato.png");
    background-size: cover;
    width: 205px;
    height: 54px;
    text-transform: uppercase;
    transition: all 300ms ease-out;
    position: fixed;
    right: 0;
    bottom: 10px;
}

#botao_contato:hover {
    width: 215px;
    height: 57pxm;
    position: fixed;
    right: 0;
    bottom: 10px;
}

.btn_login {
    width: 70px;
    height: 30px;
    padding: 1px;
}

.barra_navegacao {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 20px;
    /*box-shadow: 2px 2px 5px gray;*/
}


.text_verde_claro {
    color: #17bcbc;
}

.text_verde_escuro {
    color: #006262;
}

.linha-vertical {
    width: 100%;
    height: 10px;
    /*Altura da linha*/
    background: linear-gradient(to right, #006262, white, #006262);
    box-shadow: 2px 2px 5px gray;
}

.container_temp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

a {
    color: #000;
}

a:visited {
    color: black;
}

a:hover {
    color: #999;
}

.img_select {
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.8);
}

.tamanho_quadro_img {
    width: 60px;
    height: 60px;
    text-align: center;
}

.botoes_laterais {
    background-size: cover;
    width: 60px;
    height: 60px;
}

.form_box {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    width: 100%;
    height: 400px;
}

.form_box .title {
    padding: 24px 32px;
    font-size: 24px;
    border-bottom: thin solid #ccc;
}

.form_box form {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    padding: 32px;
}

.btn_verde {
    background-color: #006262;
    color: white;
    /* Cor do texto */
    border-color: #006262;
    /* Cor da borda */
}

.btn_verde:hover {
    background-color: #008080;
    /* Cor de fundo mais clara ao passar o mouse */
    border-color: #008080;
    /* Cor da borda ao passar o mouse */
}

/*        .nav-list{
    display: flex;
    align-items: center;

}
.nav-list ul{
    display: flex;
    justify-content: none;
    list-style: none;
}
.nav-item{
    margin: 0 15px;
    color: white;
}
.nav-link{
    text-decoration: none;
    font-size: 1.25rem;
    color: white;
    font-weight: 400;
}*/
.navbar-nav .nav-link {
    color: #ccc;
    /* Cor clara quando o link não está ativo */
}

.navbar-nav .nav-link:hover {
    color: #fff;
    /* Cor mais clara ao passar o mouse */
}

.navbar-nav .nav-link.active {
    color: #17bcbc;
    /* Cor para o link ativo */
    font-weight: bold;
    /* Destacar o link ativo */
    border-bottom: 2px solid #17bcbc;
    /* Adicionar um destaque ao link ativo */
}

.navbar-nav .nav-item:not(:last-child) {
    border-right: 1px solid #ccc;
    /* Cor da linha */
    margin-right: 15px;
    /* Espaçamento à direita */
    padding-right: 15px;
    /* Espaçamento interno à direita */
}

/* Estilo inicial - Fora da tela */
.slide-in {
    opacity: 0;
    transform: translateX(80%); /* Começa fora da tela, à direita */
    transition: all 1.5s ease-in-out; /* Suavidade da animação */
}

/* Estilo quando visível - Na posição original */
.slide-in.visible {
    opacity: 1;
    transform: translateX(0); /* Posição final no local original */
}
.nav-link.active{
    background-color: #006262 !important;
    color: white !important;
    /* Cor do texto */
    border-color: #006262 !important;
}

.text-responsive-c1 {
    font-size: 1.25rem; /* Padrão */
}

@media (max-width: 576px) { /* Para telas menores (xs) */
    .text-responsive-c1 {
        font-size: 1rem;
    }
}