.container_02 {
  background: rgb(225,232,242);
  background: linear-gradient(0deg, rgba(225,232,242,1) 0%, rgba(225,232,242,0.8) 0%);
  width: 100%;   /* Largura estende por toda p?gina da div */
  height: auto;   /* Altura da div */ 
}
.p1{
  font-size: 25px;
  font-weight: bold;
  color : #808080;
  text-align: center;
  margin-top: 10px;
}

.mapa-brasil{
  width:90%;
  height:auto;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.mapa-brasil svg{
  width:min(75%, 750px);
  height:auto;
}

.mapa-brasil path{
  fill:#cfd8dc;
  stroke:#ffffff;
  stroke-width:1;
  cursor:pointer;
  transition:.25s;
}

.mapa-brasil path:hover{
  fill:#a2caf2;
}
.estadoSelecionado{
  fill:#ba9f9f !important;
  stroke:#000000 !important;
  stroke-width:2;
}

.nomeEstado{
  fill:#000000;
    font-size:18px;
    font-weight:bold;
    font-family:Arial, Helvetica, sans-serif;
    text-anchor:middle;
    dominant-baseline:middle;
    pointer-events:none;
}

.tooltipEstado{
  display:none;
  position:fixed;
  background:#003366;
  color:#FFF;
  padding:8px 12px;
  border-radius:5px;
  font-size:13px;
  z-index:999999;
  pointer-events:none;
  box-shadow:0 0 10px rgba(0,0,0,.3);
}
/* X---------------- Box dados Repres/Distr --------- */
.modal-representantes {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
}

.conteudo-modal {
    position: relative;
    width: 70%;
    max-width: 900px;
    max-height: 80vh;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    overflow-y: auto;
}

.fechar {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.fechar img {
    width: 25px;
    height: 25px;
    display: block;
}

.fechar img:hover {
    opacity: 0.7;
}
.cardRepresentante {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fafafa;
}

.tituloRepresentante {
    font-size: 20px;
    font-weight: bold;
    color: #1d4f91;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.linhaRepresentante {
    padding: 2px 0;
    font-size: 14px;
    font-family:Arial, Helvetica, sans-serif;
}

.linhaRepresentante b {
    display: inline-block;
    width: 95px;
}

/* X---------------- Diminuição da Tela ------------- */
@media screen and (max-width:600px){
  .p1{
    font-size:15px;
    margin-top:20px;
  }
}  