@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg-page: #FFFFFF;
    --font-color: #3E3E3E;
    --font-text-color: #FFFFFF;
    --font-title-color: #005980;
    --bg-container-light: #F3F3E6;
    --bg-container-pink-light: #E1A38E;
    --bg-container-blue-dark: #005586;
    --max-page: 1200px;
    --gap-flex: 13px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: var(--bg-page);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gap-flex);
    padding-bottom: 100px;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 87px;
    background-color: var(--bg-container-blue-dark);
    max-width: var(--max-page);
    border-radius: 12px;
    margin-top: 10px;
}

header .btns-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

header .btns-container .btn {
    background-color: #12699C;
    color: #ABE1FA;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 10px;
    width: 160px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

header .btns-container .btn.active {
    background-color: #D5EFF8;
    color: #005586;
    padding: 10px 15px;
    border-radius: 10px;
    width: 160px;
    text-align: center;
}

header .btns-container .btn:hover {
    background-color: #D5EFF8;
    color: #005586;
}

h1 {
    max-width: var(--max-page);
    text-align: center;
    margin: 24px 0px 24px 0px;
    font-size: 35px;
    color: var(--font-title-color);
}

h4 {
    
    font-weight: 400;
    font-size: 17px;
    color: #ffffff;
}

h4 a {
    color: #9adaf3;
    font-weight: 600;
    text-decoration: underline;
}


.info-titulo {
    width: 100%;
    max-width: var(--max-page);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.info-titulo > div:first-child {
    width: 210px;
}


.translate {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
}

.translate .lang-pt,
.translate .lang-en {
    /* exemplo */
    background-color: #EBEBD9;
    color: #005980;
    border: 1px solid #005980;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    user-select: none;
    text-transform: uppercase;
}

.translate .lang-pt:hover,
.translate .lang-en:hover,
.translate .lang-pt.active,
.translate .lang-en.active {
    background-color: #005980;
    color: #FFFFFF;
}

section {
    max-width: var(--max-page);
    margin: 0px 10px;
}


section.column-1 {
    height: 365px;
    display: flex;
    flex-direction: row;
    gap: var(--gap-flex);
}

div.container {
    border-radius: 12px;
}

div.container.logo {
    width: 25%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

div.container.logo img {
    width: 87%;

}


div.container-numbers {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gap-flex);
}

div.container-numbers>.container {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    ;
    padding: 5px 43px;
}

div.container-numbers p {
    color: var(--font-text-color);
    text-align: center;
}

div.container-numbers>.container p:nth-child(1) {
    font-size: 33px;
}

div.container-numbers>.container p:nth-child(2) {
    font-size: 13px;
    text-transform: uppercase;
}

.container.featured-image {
    width: 50%;
    
    overflow: hidden;
    
    position: relative;
}

.container.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    object-position: center;
    
    display: block;
}


div.container.blue-light {
    background-color: var(--bg-container-pink-light);
}

div.container.blue-dark {
    background-color: var(--bg-container-blue-dark);
}

div.container.light {
    background-color: var(--bg-container-light);
}


section.column-2 {
    
    height: auto;
    min-height: 510px;
    display: flex;
    flex-direction: row;
    gap: var(--gap-flex);
}

section.column-2 .container.text.bg-image {
    width: 36%;
    padding: 60px 60px;
    color: var(--font-text-color);
        line-height: 24px;
    font-size: 16.7px;
    font-weight: 350;
    
    background-image: url("../imagens/bg-blue.png");
    background-size: cover;
    
    background-position: bottom;
    
    background-repeat: no-repeat;
    
}

section.column-2 .container.text.bg-image p {
    margin-bottom: 20px;
}

section.column-2 .container.text a {
    color: var(--font-text-color);
    font-weight: 500;
    text-decoration: underline;
}

section.column-2 .container.graphics {
    width: 64%;
    padding: 20px 50px;
}


.graphics-pizza {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 5px 0 12px 0;
    margin-top: 20px;
    width: 100%;
}


.graphics-pizza>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    
    min-height: 250px;
}

.graphics-pizza canvas {
    width: 100% !important;
    height: auto !important;
    
    
    max-height: 220px;
}


.chart-title-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
    margin-bottom: 15px;
    
    min-height: 40px;
    
}


.chart-total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--font-title-color);
    background-color: #EBEBD9;
    padding: 2px 8px;
    border-radius: 6px;
    min-width: 30px;
    
    text-align: center;
}

.chart-title {
    margin-bottom: 0;
    
    font-size: 1.0rem;
    
    color: var(--font-color, #3E3E3E);
    text-align: center;
    font-weight: 700;
}


.filter-ez {
    margin-top: 10px;
}


section.column-3 {
    height: 770px;
    display: flex;
    flex-direction: row;
    gap: var(--gap-flex);
    background-color: var(--bg-container-light);
    width: var(--max-page);
    border-radius: 12px;
    padding: 30px 50px;
    justify-content: space-between;
}


section.column-3 .map-container,
section.column-3 .chart-bar-container {
    width: 48%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.mapa-brasil-container {
    width: 100%;
    max-width: 500px;
    height: 500px;
    
    flex-grow: 1;
    
}


.mapa-brasil-container svg path {
    stroke: #FFFFFF;
    
    stroke-width: 0.5;
    transition: fill 0.3s ease-in-out;
}

.mapa-brasil-container svg path:hover {
    opacity: 0.8;
}

section.column-3 .title-img {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    max-width: 100%;
    margin-bottom: 20px;
    
}

section.column-3 .title-img img {
    width: 180px;
    height: auto;
}


.chart-bar-container .chart-title {
    margin-top: 0;
    margin-bottom: 20px;
    align-self: center;
}

.chart-bar-canvas {
    width: 100%;
    height: 100%;
    
    max-height: 550px;
    /* padding-left: 10px; */
    margin-top: 100px;
    
}

.chart-bar-canvas canvas {
    width: 100%;
    height: 100%;
}

h3 {
    max-width: var(--max-page);
    text-align: start;
    font-size: 30px;
    color: var(--font-title-color);
}

.text-nucas-uf h3 {
    font-size: 33px;
    margin-bottom: 10px;

}


section.column-4 {
    height: auto;
    min-height: 850px;
    display: flex;
    flex-direction: column;
    gap: var(--gap-flex);
    background-color: var(--bg-container-light);
    width: var(--max-page);
    border-radius: 12px;
    padding: 60px 50px;
    justify-content: flex-start;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #EBEBD9;
    border-radius: 12px;
    overflow: hidden;
    
    
}


td {
    border-top: 5px solid var(--bg-container-light);
    padding: 10px 14px;
    text-align: center;
    white-space: nowrap;
    
    overflow: hidden;
    
    text-overflow: ellipsis;
    
}

th {
    
    padding: 10px 14px;
    text-align: center;
    background-color: var(--bg-container-pink-light);
    color: white;
    font-weight: bold;
}


.status-red {
    color: #D32F2F;
    font-weight: bold;
    font-size: 14px;
}

.status-yellow {
    color: #F57F17;
    font-weight: bold;
    font-size: 14px;
}

tr.row-red {
    background-color: #f3dede;
}

tr.row-yellow {
    background-color: #f2edd2;
}

tr.row-red:hover {
    background-color: #edd1d1;
}

tr.row-yellow:hover {
    background-color: #e2dcba;
}


tr:hover {
    background-color: #e2e2ce;
}

a {
    color: #408de0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.filter-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.filter-container .title-img {
    width: 48%;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.filter-container .title-img .itens {
    
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-container .title-img img {
    
    height: 130px;
}

.filter-container .text {
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 30px;

}


.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    
    border-radius: 12px;
    table-layout: fixed;
    border-collapse: collapse;
}

.table-container th,
.table-container td {
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14.5px;
}


.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 8px;
    flex-wrap: wrap;
    
}

.pagination-container button {
    cursor: pointer;
    background-color: #EBEBD9;
    border: 1px solid #005980;
    color: #005980;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination-container button:hover {
    background-color: #005980;
    color: #FFFFFF;
}

.pagination-container button.active {
    background-color: #005980;
    color: #FFFFFF;
    border-color: #005980;
}

.pagination-container button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-container .ellipsis {
    padding: 8px 4px;
    color: #005980;
    font-weight: bold;
}

tr.header {
    height: 56px;
}


.filters-alert-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-theme-alert {
    width: 200px;
}
.filter-uf select,
.filter-ez select,
.filter-uf-alert select,
.filter-theme-alert select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #005980;
    background-color: #EBEBD9;
    color: #005980;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    
    min-width: 250px;
}

p.text-space,
p.text-space-alert {
    font-size: 20px;
    color: var(--font-title-color);
}


a.mapboxgl-ctrl-logo {
    display: none !important;
}


section.column-5 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}


section.column-5 .logos {
    display: flex;
    justify-content: center;
    flex-direction: row;
}


section.column-5 .logos p {
    color: #262626;
    font-size: 17px;
    font-weight: bold;
}

section.column-5 .logos .logo-container:nth-child(1) {
    width: 25%;
}

section.column-5 .logos .logo-container:nth-child(2) {
    width: 35%;
    border-left: 2px solid #c2c2c2;
    padding-left: 30px;
}

section.column-5 .logos .logo-container:nth-child(3) {
    width: 35%;
    border-left: 2px solid #c2c2c2;
    padding-left: 30px;
}

section.column-5 .logos .logo-container img {
    width: 90%;
    height: auto;

}

section.column-5 .logos .logo-container:nth-child(2) img {
    width: 80%;
    ;
}


.graphics-pizza {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.graphics-pizza > div {
    min-height: 300px;
}

.graphics-pizza canvas {
    height: 460px !important;
    max-height: 460px;
}

.chart-bar-canvas {
    margin-top: 112px;
}

#table-alert a {
    color: var(--font-title-color);
    font-weight: 700;
    text-decoration: underline;
}

#table-alert {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

#table-alert th,
#table-alert td {
    padding: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14.5px;
}


.territory-filters {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 6px;
}

.territory-filters p {
    font-size: 15px;
    color: var(--font-color);
    font-weight: 600;
    display: none;
}

.territory-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.territory-btn {
    border: none;
    border-radius: 8px;
    background-color: #BFC3C6;
    color: #FFFFFF;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 16px;
    min-width: 155px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.territory-btn.active {
    background-color: #005980;
    color: #FFFFFF;
}

.territory-btn:hover {
    opacity: 0.92;
}

section.column-2 .container.graphics {
    
    padding: 28px 34px;
}

.graphics-pizza {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 10px 0 0 0;
    margin-top: 10px;
    width: 100%;
    align-items: start;
}

.graphics-pizza > div {
    min-height: 320px;
    align-items: stretch;
}

.graphics-pizza canvas {
    width: 100% !important;
    height: 460px !important;
    max-height: 460px;
}

.chart-title-container {
    justify-content: flex-start;
    margin-bottom: 12px;
    min-height: auto;
}

.chart-title {
    font-size: 18px;
    font-weight: 700;
    color: #3E3E3E;
    text-align: left;
}


.filter-uf-alert,
.filter-theme-alert {
    display: inline-block;
    margin-right: 10px;
}

.filter-uf-alert,
.filter-theme-alert {
    display: flex;
    gap: 10px;
}


.logo-entre-no-clima {
    position: relative;
    left: -178px;
        width: 161px;
    height: 124px;
}
.logo-entre-no-clima img {
    width: 100%;
    height: auto;
}


section.column-3.carrossel-section {
    min-height: 430px;
    background-color: var(--bg-container-light);
    width: var(--max-page);
    border-radius: 12px;
    padding: 38px 46px;
    height: auto;
}

.carousel-container {
  width: 100%;
}

.carousel-header h3 {
  font-size: 32px;
  color: #005f86;
  margin: 0 0 6px;
}

.carousel-header p {
  font-size: 18px;
  color: #444;
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.35;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 4);
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
  scroll-snap-align: start;
}

.carousel-item img,
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}


.carousel-item:hover img,
.carousel-item:hover .video-thumb img {
  transform: scale(1.08);
}


.carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.carousel-item:hover::after {
  background: rgba(0, 0, 0, 0.05);
}

.video-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 46px;
  color: white;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 10px 10px;
  font-size: 13px;
  line-height: 1.25;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.carousel-btn {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-container-pink-light);
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-btn:hover {
  transform: scale(1.08);
  background: #d79883;
}

.carousel-btn.prev {
  left: -19px;
  padding-bottom: 10px;
}

.carousel-btn.next {
  right: -19px;
  padding-bottom: 10px;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.82);
}

.media-modal.active {
  display: flex;
}

.modal-content {
  width: min(100%, 1000px);
  max-height: 90vh;
}

.modal-content img {
  width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  background: #000;
}

.modal-content iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 0;
  display: block;
  background: #000;
}

.modal-close {
  position: fixed;
  top: 22px;
  right: 28px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 42px;
  cursor: pointer;
  z-index: 10000;
}


.municipio-search {
  /* width: min(260px, 100%); */
  padding: 10px 12px;
  border: 1px solid #d6d6c8;
  border-radius: 999px;
  background: #fff;
  color: #3E3E3E;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  min-width: 250px;
}

.municipio-search:focus {
  border-color: #958C80;
}

.filter-uf,
.filter-uf-alert,
.filters-alert-row {
  gap: 10px;
  flex-wrap: wrap;
}

.filter-uf,
.filter-uf-alert,
.filters-alert-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.municipio-search {
  /* width: min(260px, 100%); */
  min-height: 39px;
  padding: 8px 12px;
  border: 1px solid #005980;
  border-radius: 8px;
  background-color: #EBEBD9;
  color: #005980;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  min-width: 250px;
}

.municipio-search::placeholder {
  color: rgba(0, 89, 128, 0.72);
}

.municipio-search:focus {
  border-color: #003f5c;
  box-shadow: 0 0 0 2px rgba(0, 89, 128, 0.12);
}


.table-container table,
#table-alert {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.table-container th,
.table-container td,
#table-alert th,
#table-alert td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-container table th:nth-child(1),
.table-container table td:nth-child(1),
#table-alert th:nth-child(1),
#table-alert td:nth-child(1) {
    width: 10%;
}

.table-container table th:nth-child(2),
.table-container table td:nth-child(2),
#table-alert th:nth-child(2),
#table-alert td:nth-child(2) {
    width: 20%;
}

.table-container table th:nth-child(3),
.table-container table td:nth-child(3),
.table-container table th:nth-child(4),
.table-container table td:nth-child(4),
#table-alert th:nth-child(3),
#table-alert td:nth-child(3),
#table-alert th:nth-child(4),
#table-alert td:nth-child(4) {
    width: 16%;
}

.table-container table th:nth-child(5),
.table-container table td:nth-child(5),
#table-alert th:nth-child(5),
#table-alert td:nth-child(5) {
    width: 14%;
}

.table-container table th:nth-child(6),
.table-container table td:nth-child(6),
#table-alert th:nth-child(6),
#table-alert td:nth-child(6) {
    width: 14%;
}

#table-alert th:nth-child(7),
#table-alert td:nth-child(7) {
    width: 12%;
}

.pagination-container {
    min-height: 76px;
    flex-wrap: nowrap;
    gap: 10px;
}

.pagination-container button {
    min-width: 44px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-status {
    min-width: 132px;
    text-align: center;
    color: #005980;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.btn-link-foto {
    background-color: #ffffff;
    width: fit-content;
    padding: 5px 20px;
    border-radius: 18px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .table-container table,
    #table-alert {
        min-width: 780px;
        table-layout: fixed;
    }

    .pagination-container {
        flex-wrap: nowrap;
    }
}



@media (max-width: 900px) {
  section.column-3.carrossel-section {
    padding: 32px 28px;
  }

  .carousel-item {
    flex: 0 0 calc((100% - 16px) / 2);
  }
}

@media (max-width: 600px) {
  section.column-3 {
    padding: 28px 20px;
  }

  .carousel-header h3 {
    font-size: 26px;
  }

  .carousel-header p {
    font-size: 16px;
  }

  .carousel-item {
    flex: 0 0 85%;
    height: 180px;
  }

  .carousel-btn.prev {
    left: -12px;
  }

  .carousel-btn.next {
    right: -12px;
  }
}


@media (max-width: 840px) {
    .territory-buttons {
        width: 100%;
        gap: 10px;
    }

    .territory-btn {
        min-width: unset;
        width: 100%;
    }

    .graphics-pizza {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .graphics-pizza canvas {
        height: 460px !important;
        max-height: 460px;
    }

    
}


@media (max-width: 1240px) {

    section.column-3 {
        max-width: fit-content;
    }

    section.column-4 {
        max-width: fit-content;
    }
}

@media (max-width: 1100px) {

    section.column-2 .container.text.bg-image {
        font-size: 16px;
        padding: 60px 35px 80px 35px;
        line-height: 24px;
    }

    .filter-container .title-img img {
        width: 135px;
        height: fit-content;
    }

    
    .graphics-pizza {
        gap: 20px;
    }

}


@media (max-width: 960px) {

    header {
        margin-top: 0px;
        border-radius: 0px;
    }


    h3 {
        font-size: 20px;

    }

    .filter-uf select,
    .filter-ez select,
    .filter-uf-alert select,
    .filter-theme-alert select,
    .municipio-search {
        min-width: 150px;
        width: 170px;
    }

    body>section.column-4>div.filter-container>div.text>p:nth-child(1) {
        font-size: 13px;
    }

    p.text-space,
    p.text-space-alert {
        font-size: 16px;
        color: var(--font-title-color);
    }

    
    .graphics-pizza {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 840px) {
    .info-titulo {
        flex-direction: column;
        align-items: center;
    }

    .info-titulo > div:first-child {
        display: none;
    }

    section.column-1 {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: var(--gap-flex);
    }

    div.container.logo {
        width: 100%;
        padding: 10px;
    }

    div.container-numbers,
    .container.featured-image {
        width: 100%;

    }

    div.container.logo img {
        width: 37%;
    }

    h1 {

        margin: 20px 20px;
        font-size: 25px;

    }

    h4 {
        margin-bottom: 20px;
        font-weight: 400;
        font-size: 15px;
        padding: 0px 20px;
        text-align: center;
    }

    section.column-2 {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: var(--gap-flex);
        width: 100%;
    }

    section.column-2 .container.graphics,
    section.column-2 .container.text.bg-image {
        width: 100%;
    }

    section.column-2 .container.graphics {
        height: auto;
        width: 100%;
        
    }

    
    .graphics-pizza {
        grid-template-columns: 1fr;
        max-height: none;
        
    }

    .graphics-pizza>div {
        max-width: 100%;
        max-height: 400px;
    }

    .filters {
        display: flex;
        justify-content: center;
    }

    section.column-3 {
        height: 1250px;
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
        width: 100%;
    }

    section.column-3 .map-container,
    section.column-3 .chart-bar-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    section.column-3 .map-container {
        gap: 20px;
    }

    .filter-container .title-img img,
    section.column-3 .title-img img {
        width: 96px;
        height: fit-content;
    }

    section.column-4 {
        max-width: 100%;
    }

    .mapa-brasil-container {
        width: 100%;
        height: 400px;

    }

    section.column-4 {
        width: 100%;
        padding: 40px 20px;
        height: max-content;
    }


    .filter-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .filter-container .title-img {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }


    .filter-container .text {
        width: 100%;
        display: flex
    }

    section.column-5 .logos {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    section.column-5 .logos .logo-container {
        width: 100% !important;
    }

    section.column-5 .logos .logo-container:nth-child(2),
    section.column-5 .logos .logo-container:nth-child(3) {
        border-left: none;

    }

    section.column-5 .logos .logo-container:nth-child(1) {
        padding-left: 30px;

    }

    div.container-numbers>.container {
        width: 100%;
        height: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px 43px;
    }

    .text-nucas-uf h3 {
        font-size: 21px;
        margin-bottom: 10px;

    }

    .text-nucas-uf p {
        font-size: 13px;

    }

    .chart-bar-canvas {
        margin-top: 0px;
    }

    #table-alert {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
}

.logo-entre-no-clima {
   position: relative;
        bottom: 30px;
        left: -83.5px;
        width: 134px;
        height: 135px;
}

}