/* FONTES */

@font-face {
    font-family: 'RobotoBlack';
    src: url('../fonts/Roboto-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoBlackItalic';
    src: url('../fonts/Roboto-BlackItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'RobotoBold';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoBoldItalic';
    src: url('../fonts/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'RobotoItalic';
    src: url('../fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'RobotoLight';
    src: url('../fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoLightItalic';
    src: url('../fonts/Roboto-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'RobotoMedium';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoMediumItalic';
    src: url('../fonts/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoThin';
    src: url('../fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'RobotoThinItalic';
    src: url('../fonts/Roboto-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

body::-webkit-scrollbar {
    width: 12px; /* Largura da barra de rolagem */
}

body::-webkit-scrollbar-thumb {
    background-color: darkgrey; /* Cor da barra de rolagem */
    border-radius: 10px; /* Arredondamento */
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Cor do fundo da barra */
}

.gradient {
    background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}

body {
    font-family: "RobotoRegular";
    overflow-x: hidden;
}

/* Cor do botão de voluntários */
.bg-blue {
    background-color: #1C7293;
}

.hover_button:hover {
    background-color: #2286AC;
}

.click_button:active {
    background-color: #196481; 
}

.text-column span {
    background-color: #1c7293;
    color: white;
    padding: 2px 6px;
}

/* Estilo da linha do tempo */

.year-time-line {
    position: relative;
    display: flex;
    align-items: center; 
}

.nad-test {
    color: #daae51;
    height: 82%;
    border-width: 1px;
    border-color: #1C7293;
    width: 5px;
    background-color: #1C7293;
    margin-left: 16px;
    margin-top: 12px;
}

.year-time-line:before {
    content: '';
    display: block;
    width: 15px; 
    height: 15px;
    border-radius: 50%;
    background-color: #fff; 
    border: 3px solid #1c7293; 
    position: absolute;
    left: -29px; 
    top: -10%; 
    transform: translateY(-50%); 
}
  