/*setas*/
.arrow-up {
  width: 0;
  height: 0;
  border-left: 6px solid transparent; /* Largura da seta */
  border-right: 6px solid transparent; /* Largura da seta */
  border-bottom: 6px solid var(--button-border); /* Cor e altura da seta */
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent; /* Largura da seta */
  border-right: 6px solid transparent; /* Largura da seta */
  border-top: 6px solid var(--button-border); /* Cor e altura da seta */
}

/* botões*/

button{
background-color:var(--primary-color);
color: #fff;
padding: 15px 30px;
border: 1px solid var(--primary-color);
border-radius: 50px;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-size: var(--base-font-size);
line-height: 1;
cursor: pointer;
}

button:hover{
color: var(--button-color);
background-color: #fff;
border: 1px solid var(--primary-color);
}

button.active{
background-color: var(--primary-color);
}

/* botão com borda*/

.botao-borda{
background-color: #fff;
border: 1px solid var(--secondary-color);
color: var(--secondary-color);
text-transform: none;
}

.botao-borda:hover{
border: 1px solid var(--primary-color);
background-color: transparent;
}

/* botão sublinhado*/
button.sublinhado{
  padding-left: 0;
}

.sublinhado{
  background-color: #fff;
  color: var(--primary-color);
  font-size: var(--base-font-size);
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  border: none;
  text-transform: none;
  position: relative;
}

.sublinhado::after{
content: url('../assets/icons/icon-arrow-up.svg');
position: absolute;
top: 50%;
right: 10px; /* Ajuste a posição conforme necessário */
transform: translateY(-50%);
width: 20px; 
}

#cmplz-manage-consent .cmplz-manage-consent{
    margin: unset;
    z-index: 9998;
    color: var(--cmplz_text_color);
    background-color: var(--cmplz_banner_background_color);
    border-style: solid;
    border-color: var(--cmplz_banner_border_color);
    border-width: var(--cmplz_banner_border_width);
    border-radius: var(--cmplz_banner_border_radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    line-height: initial;
    position: fixed;
    bottom: var(--cmplz-manage-consent-offset);
    min-width: 100px;
    height: var(--cmplz-manage-consent-height);
    right: 80px;
    padding: 15px;
    cursor: pointer;
    animation: mc_slideOut 0.5s forwards;
}

.sublinhado:hover{
  background-color: transparent;
  margin-left: 0;
}

/*texto sublinhado*/
.texto-sublinhado{
background-image: linear-gradient(to right, #0D4CFC, #5880EFA1, #fff);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 2px;
}

.texto-sublinhado-escuro{
background-image: linear-gradient(to right, #0D4CFC, #5880EFA1, #D9D9D900);
background-position: bottom;
background-repeat: no-repeat;
background-size: 100% 2px;
}

.linha{
  display: flex;
  flex-direction: row;
  gap: 50px;
  
}
.coluna{
  display: flex;
  flex-direction: column;
  gap: 50px;
  
}

.container{
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
