
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header, footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
}

section {
    margin: 40px 0;
}

h1, h2 {
    color: #0078D7;
}

.content-section {
    margin: 60px 0;
}

#map {
    width: 100%;
    height: 100vh;
    background-color: #C2C6D6;
}
.mapa-interativo{
display:flex;
justify-content: center;
position: relative;
}

.mapa-interativo_header{
    height: 40px;
    position: absolute;
    background: #C2C6D6;
    background: -webkit-linear-gradient(180deg,rgba(194, 198, 214, 1) 23%, rgba(194, 198, 214, 0) 100%);
    background: -moz-linear-gradient(180deg,rgba(194, 198, 214, 1) 23%, rgba(194, 198, 214, 0) 100%);
    background: linear-gradient(180deg,rgba(194, 198, 214, 1) 23%, rgba(194, 198, 214, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#C2C6D6",
    endColorstr="#C2C6D6",
    GradientType=0
    );
}

.country-label {
background: none;
border: none;
box-shadow: none;
padding: 0;
margin: 0;
color: #333;
}

.filter-container {
    position: absolute;
    bottom: 20px;
    z-index: 1000;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.filter-button {
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    color: #2E2D39;
    background-color: transparent;
    border: 1px solid #2E2D39;
}

.filter-button.active#filter-all {
    background-color: #FFEB3B;
    border: 1px solid #FFEB3B;
    color:#2E2D39;
}
.filter-button.active#filter-datacenter {
    background-color: #333;
    border: 1px solid #333;
    color: #FFD919;

}
.filter-button.active#filter-datacenter-construction {
    background-color: #888;
    border: 1px solid #888;

}
.filter-button.active#filter-submarine {
    background-color: #6495ED;
    border: 1px solid #6495ED;

}
.filter-button.active#filter-terrestrial {
    border:none;
    background-color: #4CAF50;
    border: 1px solid #4CAF50;

}
.filter-button.active#filter-coverage {
    border:none;
    background-color: #FFD700;
    border: 1px solid #FFD700;

}
.filter-button.active#filter-exchange {
    border:none;
    background-color: #FF7F50;
    border: 1px solid #FF7F50;

}


.internet-exchange {
    background-color: #FFB987;
    color: white;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.datacenter {
    background-color: #333;
    color: white;
    padding: 5px;
    border-radius: 1px;
    font-weight: bold;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.datacenter-construction {
    background-color: #888;
    color: white;
    padding: 5px;
    border-radius: 1px;
    font-weight: bold;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zoom-controls {
    position: absolute;
    bottom: 30px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.zoom-button {

    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    color: #2E2D39;
    background-color: transparent;
    border: 1px solid #2E2D39!important;
}
.zoom-button:hover {
    background-color: #f5f5f5;
}
.location-select {
    width: 100%;
    height: 200px;
    display: block;
    position: absolute;
    background: #C2C6D6;
    top: 0;
    z-index: 1000;
    background: -webkit-linear-gradient(180deg,rgba(194, 198, 214, 1) 23%, rgba(194, 198, 214, 0) 100%);
    background: -moz-linear-gradient(180deg,rgba(194, 198, 214, 1) 23%, rgba(194, 198, 214, 0) 100%);
    background: linear-gradient(180deg,rgba(194, 198, 214, 1) 23%, rgba(194, 198, 214, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#C2C6D6",
    endColorstr="#C2C6D6",
    GradientType=0
    );
    /* display:none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.content-header{
    z-index: 2000;
    width: 100%;
    position: absolute;
    top: 0;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 60px;
}

#location-dropdown{
    display:none;
}
.location-select select {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Quando o mapa está em modo interativo, ajustamos o comportamento da página */
body.map-is-interactive {
    overflow: hidden; /* Impede o scroll da página quando interagindo com o mapa */
}

@media (max-width: 1200px) {
    .zoom-controls {
        bottom: 175px;
    }
}
