main {
    justify-content: start;
    overflow: auto;
    background: linear-gradient(to bottom, #e1a02b, #f3c26a);
    color: white;
}

.container_desafios {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 1rem;
    margin-bottom: 4rem;
}

.titulo_pagina {
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.div_titulo {
    margin-bottom: 1rem;
}

.descricao_pagina {
    margin: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.container_informacoes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
}

.card_desafios {
    display: flex;
    align-items: center;
    border-radius: 10px;
    padding: 0.6rem;
}

.card_concluidos {
    background-color: #fbe7c7;
    flex-direction: column;
}

.div_progresso {
    display: flex;
    width: 100%;
    gap: 0.4rem;
    justify-content: space-between;
    align-items: center;
}

.circulo_progresso {
    position: relative;
    width: 120px;
    height: 120px;
}
.circulo_progresso svg {
    transform: rotate(-90deg);
}
.circulo_progresso circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}
.circulo_progresso .bg {
    stroke: #00bfa5;
}
.circulo_progresso .progresso {
    stroke: #1d7167;
    transition: stroke-dashoffset 0.5s ease;
}
.circulo_progresso .texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.div_dados_tarefa {
    color: black;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.titulo_dados_tarefa {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}
.texto_dados_tarefa {
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.container_tarefa_desafios {
    display: flex;
    flex-direction: column;
    margin-top: 0.8rem;
    width: 100%;
    gap: 0.4rem;
}

.div_tarefa_desafio {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: black;
    border-bottom: 1px solid #80808012;
    padding-bottom: 0.4rem;
    gap: 0.6rem;
    align-items: center;
}

.div_checkbox_tarefa_desafios {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}
.div_checkbox_tarefa_desafios input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #0000003f;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    background-color: white;
    transition: all 0.2s ease-in-out;
    accent-color: #00bfa5;
    margin: 0;
}
.div_checkbox_tarefa_desafios input[type="checkbox"]:checked {
    background-color: #00bfa5;
}
.div_checkbox_tarefa_desafios input[type="checkbox"]::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.div_checkbox_tarefa_desafios input[type="checkbox"]:checked::after {
    opacity: 1;
}

.checkbox_flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.texto_pontos {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
    color: #0d9488;
}

.btn_desafio {
    background-color: #1693B4;
    width: 100%;
    color: white;
    border-radius: 10px;
    padding: 0.4rem;
    border: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.container_desafio_diario {
    display: flex;
    flex-direction: column;
}

.header_desafios {
    background: linear-gradient(90deg, #19B6A6, #17A39C);
    color: white;
    padding: 12px 24px;
    border: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
}

.img_desafio {
    width: 100%;
}

.card_descricao_desafio {
    background-color: white;
    color: black;
    padding: 0.4rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.titulo_desafio {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.descricao_desafio {
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    color: #71717a;
}

.btn_iniciar {
    background-color: #14b8a6;
    border: none;
    outline: none;
    padding: 0.4rem;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.mini_ranking {
    text-align: center;
    font-weight: bold;
    color: black;
}

.mini_ranking h2{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.calendario-container {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    color: black;
    box-sizing: border-box;
}

.calendario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.calendario-semana, .calendario-dias {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 4px;
}

.calendario-semana span {
    font-weight: bold;
    color: #555;
}

.calendario-dias span {
    padding: 8px 0;
    border-radius: 6px;
    cursor: pointer;
}

.calendario-dias .dia-desafio {
    background-color: #ffa726;
    color: #fff;
    font-weight: bold;
}

.calendario-dias .selected {
    outline: 2px solid #333;
}

#infoDiaSelecionado {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.arrow {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

#mesAno{
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}