html {
    scroll-behavior: smooth;
}
:root {
    --backColor: rgb(163, 163, 163);
    --dontStart: rgb(219, 52, 40);
    --incompleted: rgb(219, 186, 40);
    --completed: rgb(40, 219, 40);
}
body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}
.main-principal {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: baseline;
    align-items: center;
    flex-direction: column;
    background-color: rgb(163, 163, 163);
}
.header-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: fit-content;
    position: relative;
}
.header-bar {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    background-color: rgb(235, 235, 235);
    border-radius: 0px 0px 10px 10px;
    box-shadow: 2px 2px 3px black;
}
.bar-menu-content {
    width: fit-content;
    height: fit-content;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 5px;
    margin: 10px;
    gap: 5px;
    cursor: pointer;
}
.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: black;
    border-radius: 15px;
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
    transition: 0.5s;
}
.bar1-anim {
    transform: rotateZ(45deg) translate(14px, 0); 
    transition: 0.5s;
}
.bar2-anim {
    opacity: 0;
    transition: 0.5s;
}
.bar3-anim {
    transform: rotateZ(-45deg) translate(14px, 0);
    transition: 0.5s;
}
.bar-options-content {
    position: absolute;
    top: 75px;
    left: -100%;
    width: fit-content;
    height: fit-content;
    padding: 15px 20px;
    margin: 0;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 2px 2px 3px black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    list-style: none;
    transition: 0.5s;
}
.bar-options-content-anim {
    left: 0;
    transition: 0.5s;
}
a {
    text-decoration: none;
}
.option-bar {
    font-size: 23px;
    font-weight: 500;
    color: black;
    cursor: pointer;
    transition: 0.4s;
}
.option-bar:hover {
    color: rgb(0, 102, 255);
    transition: 0.4s;
}
.logo-content {
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin: 15px 20px;
    gap: 5px;
    font-size: 20px;
    font-weight: 400;
}
@media (max-width: 250px) {
    .logo-content {
        display: none;
    }
}
.sections-content {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: baseline;
}
.report-section {
    width: 100vw;
    min-width: 100vw;
    height: fit-content;
    padding: 20px 0px;
    background-color: var(--backColor);
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}
.header-report-section {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.title-report {
    width: fit-content;
    height: fit-content;
    padding: 20px;
    font-size: 35px;
    font-weight: 600;
}
.select-report-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: fit-content;
    height: fit-content;
    gap: 10px;
}
.report-text {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    font-weight: 500;
}
.report-select {
    width: 100%;
    height: fit-content;
    border: 2px solid black;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
}
.total-graphic-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    margin-top: 20px;
    gap: 10px;
}
.total-graphic {
    width: 250px;
    height: 200px;
    background-color: transparent;
    border: 3px solid black;
    border-top: transparent;
    border-right: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    margin: 20px 0px;
}
.bar-graphic {
    width: 100%;
    height: 50px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
}
.bar-completed {
    background-color: var(--completed);
}
.bar-incompleted {
    background-color: var(--incompleted);
}
.bar-dont-start {
    background-color: var(--dontStart);
}
.total-graphic-caption {
    margin: 0;
    padding: 0;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    list-style: none;
    width: fit-content;
    height: fit-content;
}
.total-graphic-li {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.completed {
    color: var(--completed);
    font-size: 25px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}
.incompleted {
    color: var(--incompleted);
    font-size: 25px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}
.dont-start {
    color: var(--dontStart);
    font-size: 25px;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}
.situation-all-maps-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    gap: 10px;
}
.title-situation-all-maps {
    width: fit-content;
    height: fit-content;
    padding: 20px;
    font-size: 30px;
    font-weight: 600;
}
.filter-situation-maps-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: fit-content;
    height: fit-content;
    gap: 10px;
}
.text-situation-maps {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    font-weight: 500;
}
.select-situation-maps {
    width: fit-content;
    height: fit-content;
    border: 2px solid black;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
}
.situation-all-maps {
    display: flex;
    justify-content: baseline;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: fit-content;
    height: fit-content;
    margin-top: 20px;
    gap: 20px;
}
.situation-map {
    display: flex;
    justify-content: baseline;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    min-width: 200px;
    height: fit-content;
    padding: 0px 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 2px 7px black;
    padding: 5px 10px 0px 10px;
    gap: 10px;
}
.graphic-map-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
    position: relative;
    width: 100px;
    height: 50px;
    overflow: hidden;
}
.graphic-map {
    display: flex;
    width: 100px;
    height: 100px;
    background-color: rgb(172, 172, 172);
    border-radius: 50% 50% 0 0;
    overflow: hidden;
}
.half-part {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--dontStart);
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 0% 100%, 0 100%, 50% 50%);
    transform: rotate(45deg);
}
.percent-part {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 20px 20px 0 0;
    background-color: rgb(201, 201, 201);
    max-width: fit-content;
    height: fit-content;
    padding: 5px 10px 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-situation-map-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    gap: 1px;
}
.name-situation-map {
    text-wrap: wrap;
    font-size: 18px;
    font-weight: 500;
}
.blocks-situation-map {
    text-wrap: wrap;
    font-size: 16px;
    font-weight: 500;
}
.maps-section {
    min-width: 100vw;
    width: 100vw;
    height: fit-content;
    padding: 20px 0px;
    background-color: var(--backColor);
    overflow: hidden;
    display: none;
    justify-content: baseline;
    align-items: center;
    flex-direction: column;
}
.header-maps-section {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.title-maps {
    width: fit-content;
    height: fit-content;
    padding: 20px;
    font-size: 35px;
    font-weight: 600;
}
.filters-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: fit-content;
    height: fit-content;
    gap: 10px;
}
.search-content {
    width: 300px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: white;
    border: 2px solid black;
    border-radius: 15px;
}
.input-search-maps {
    width: 270px;
    height: 100%;
    background-color: transparent;
    border: transparent;
    border-radius: 15px;
    outline: transparent;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding: 0px 10px;
}
::-webkit-input-placeholder {
    color: black;
}
.search-maps-button {
    width: 30px;
    height: 100%;
    background-color: white;
    border: transparent;
    border-radius: 15px;
    outline: transparent;
    font-size: 20px;
}
.filters-options {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
}
.filter-text {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    font-weight: 500;
}
.select-filter {
    width: fit-content;
    height: fit-content;
    border: 2px solid black;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
}
hr {
    width: 100%;
    border: 1px solid black;
    margin: 0;
}
.maps-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    margin-top: 20px;
    gap: 10px;
}
.map-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 200px;
    height: fit-content;
    padding: 0px 10px;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 2px 2px 7px black;
}
.image-map {
    object-fit: contain;
    width: 200px;
    height: fit-content;
}
.name-map {
    width: 100%;
    height: fit-content;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.number-map {
    width: 100%;
    height: fit-content;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}
.map-alert {
    font-size: 20px;
    font-weight: 500;
    width: fit-content;
    height: fit-content;
    text-align: center;
    margin: 20px;
}
.description-content {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
}
.map-description {
    width: 100%;
    max-width: 1200px;
    height: fit-content;
    background-color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid black;
    border-radius: 20px;
    box-shadow: 3px 3px 10px black;
    padding: 20px 0px;
    gap: 10px;
}
.exit-description {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    border: transparent;
    outline: transparent;
    margin: 15px;
    font-size: 30px;
    font-weight: 500;
}
.img-map-content {
    width: fit-content;
    height: fit-content;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-map-description {
    width: 80%;
    max-width: 1000px;
    height: fit-content;
    object-fit: contain;
}
.name-map-description {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    font-size: 25px;
    font-weight: 500px;
}
.number-map-description {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    font-weight: 500px;
}
.number-blocks-description {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    font-weight: 500px;
}
.button-map-link {
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 20px;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500px;
    gap: 6px;
}
.historic-section {
    width: 100vw;
    min-width: 100vw;
    height: fit-content;
    padding: 20px 0px;
    background-color: var(--backColor);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
}
.header-historic-section {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.title-historic {
    width: fit-content;
    height: fit-content;
    padding: 20px;
    font-size: 35px;
    font-weight: 600;
}
.select-historic-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: fit-content;
    height: fit-content;
    gap: 10px;
}
.historic-text {
    width: fit-content;
    height: fit-content;
    font-size: 20px;
    font-weight: 500;
}
.historic-select {
    width: 100%;
    height: fit-content;
    border: 2px solid black;
    border-radius: 10px;
    padding: 5px;
    font-size: 16px;
    font-weight: 500;
}
.historic-content {
    display: flex;
    justify-content: baseline;
    align-items: center;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    margin-top: 20px;
    gap: 30px;
}
.date-historic {
    display: flex;
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
.historic-map {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    max-width: 1200px;
    height: fit-content;
    padding: 10px 0px;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 2px 2px 7px black;
    gap: 10px;
}
.image-historic-map {
    object-fit: contain;
    width: 80%;
    max-width: 1000px;
    height: fit-content;
}
.name-historic-map {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 23px;
    font-weight: 500;
}
.number-historic-map {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.blocks-completed-map {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}
.leader-historic-map {
    width: 100%;
    height: fit-content;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}