* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: beige;
}

.img-pref-logo {
    width: auto;
    height: 130px;
}
.img-pref-nav {
    width: auto;
    height: 50px;
}
.img-pref-nav-mob {
    width: auto;
    height: 60px;
}

.img-sttu-logo {
    width: auto;
    height: 80px;
}

.sugestao{
    min-height: 600px;
}

@media (max-width: 300px) {
    .img-sttu-logo {
        height: auto;
    }
}

.bg-roda-teto {
    background-color: #2d70de;
    color: #f4f4f4;
    height: 5em;
    border-bottom: 3px solid #f3cd18;
}

@media (min-width: 768px) {

}
/* muda a propriedade herdada do display da acessibilidade do rodateto*/
#roda-teto-acessibilidade {
    display: inherit;
}
/* define as distâncias internas do rodateto */
.alinhamento-roda-teto {
    padding-right: 135px;
    padding-left: 135px;
}
/* Personalisa cor, peso, tipografia, altura da linha e tamanho do texto dos links no rodateto */
#roda-teto a {
    color: #fff !important;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    line-height: 42px;
    font-size: 15px;
}
/* Personalisa cor, peso, tipografia, altura da linha e tamanho do texto dos links no rodateto ao passar o mouse em cima */
#roda-teto a:hover {
    color: #f3cd18 !important;
    -webkit-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
}
/* remove a margem posterior dos links dentro da coluna do rodateto */
#roda-teto .col a,
::after {
    margin-left: 0px;
}

/* define margem dos links no rodateto */
#roda-teto a,
::after {
    margin-left: 20px;
}
/* Cria uma linha dourada abaixo do rodateto */
.linha-dourada {
    background-color: #f3cd18;
    height: 3px;
}

.offlogo {
    width: auto;
    height: 150px;
}

/* Alteração do tamanho, cor do bg e fonte no rodapé no menu de serviços*/
.tab-content-rodape {
    background-color: #2d70de;
    color: #fff;
    line-height: 40px !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}
/* Alteração do tamanho, cor do bg e fonte dos links no menu de serviços*/
.tab-content-rodape a {
    color: #fff;
    line-height: 40px !important;
    font-weight: 500;
    font-family: 'Montserrat';
    font-size: 14px;
    text-decoration: none;
}
/* texto do rodapé, tamanho, peso, cor*/
#rodape label {
    font-weight: 700;
    font-size: 14px;
    color: #454444;
}
/* links */
#rodape a {
    text-decoration: none;
    color: #525252;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    font-size: 13px;
    font-weight: 600;
}
/* links quando o mouse estiver sobre */
#rodape a:hover {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
/* fim */

/* ajuste dos itens da lista nas colunas do rodapé */
#rodape .col li {
    list-style: none;
    text-decoration: none;
}

/* ajuste das listas do rodape */
#rodape .col ul {
    padding: 0px;
}

/* icones das redes sociais */
.rodape-social-icon {
    padding: 5px;
    font-size: 35px;
    color: #454444!important;
}
/* primeira row do rodapé */
.rodape-superior {
    background-color: #c2c6c9;
}
/* segunda row do rodapé */
.rodape-meio {
    background-color: #b0b7bb;
}
/* terceira row do rodapé */
.rodape-inferior {
    background-color: #2d70de;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.icon-text{
    width: 128px;
    height: 128px;
    border-radius: 100%;
    background-color: #f3cd18;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Define the keyframes for the shake animation */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* Apply the shake animation to the button */
.shake-button {
    display: inline-block;
    animation: shake 0.5s;
    animation-iteration-count: infinite;
}

.shake-button:hover {
    animation: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Apply the conic gradient background and animation to the pseudo-element */
.conic-animation {
    position: relative;
    z-index: 999;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conic-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(blue, lightblue, blue);
    animation: spin 2s linear infinite;
    z-index: -1; /* Ensure the gradient is behind the content */
}

.btn-docs {
    transform: translate(-50px, 102px);
}

@media(max-width: 768px) {
    .btn-docs {
        transform: translate(-10px, 85px);
    }
}

.acessibilidade-div
{
    @media(max-width: 768px) {
        transform: translateY(-50px);
    }
   
}