
/****************** ESTILO DO MAPA E DO HTML - BODY ******************/  
        html, body {
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            font-family: Arial, sans-serif;
            background-size: cover;
        }     

*{margin: 0; padding: 0;}

/********************************************************************/  
/* MENU */
/* Add a black background color to the top navigation */
.topnav {
  background: rgba(0,100,0, 0.4);   
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  /* superior | direita | inferior | esquerda */  
  padding: 2px 15px;
  text-decoration: none;
  font-size: 16px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: rgba(0, 100, 0, 0.3);      
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
 /* background-color: #04AA6D;*/
  color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}

/* RESPONSIBLE */  
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* MENU */

/* RESPONSIBLE DIVS */
* {
  box-sizing: border-box;
}

/* LOGOS PARQUES E ICONES */ 
    .img-nav{
              border: 1px solid #FFFFFF;    
              background-color: white;
              border-radius: 50%;
              height: 16px;
              object-fit: cover;
              width: 16px;  
              /* topo | direita | inferior | esquerda */
             margin: 0px;
            }

/* RESPONSIBLE DIVS */

/* Create two equal columns that floats next to each other */

.column_top_l
 {
  position: fixed;
  /*float: left;*/
  width: 150px;
  padding: 5px;
  z-index: 1000;
  top: 0;
  left: 0;
}

.column_top_r {
  position: fixed;  
  /*float: left;*/
  width: 200px;
  padding: 5px;
  z-index: 1000;
  top: 0;
  right: 0;  
}

.column_P15 {
  float: left;
  width: 15%;
  padding: 10px;
  background: rgba(255,255,255, 0.5);
}

.column_P25 {
  float: left;
  width: 23.5%;
  padding: 10px;
  margin: 10px;
  height: 30%;  
  /*box-shadow: 0 0 15px rgba(0, 150, 0, 0.8);*/
  background: rgba(255,255,255, 0.5);
  border: 4px double green;
  border-radius: 15px;  
}

.column_P25 h1{
  font-size: 60px;
  color: rgba(0,100,0, 0.8);
}

.column_P25 h2{
  font-size: 18px;
  color: rgba(0,100,0, 0.5);
}

.column_P25 h3{
  color: rgba(0,100,0, 0.5);
  border-radius: 5px;
}

.column_P40 {
  float: left;
  width: 39%;
  margin: 0px;
  padding: 10px;  
  height: 36%;  
  background: rgba(255,255,255, 0.5);
  overflow: hidden;
}

.column_P33 {
  float: left;
  width: 33%;
  padding: 10px;
  background: rgba(255,255,255, 0.5);
}

.column_P33 h3{
  color: rgba(0,100,0, 0.5);
  border-radius: 5px;
}

.column_G33 {
  float: left;
  width: 18.55%;
  margin: 10px;
  padding: 15px;
  height: 230px;  
  background: rgba(255,255,255, 0.5);
  border: 4px double green;
  border-radius: 15px;  
}

.column_G33 h1{
  margin: 10px;
  padding: 10px;  
  font-size: 60px;
  color: rgba(0,100,0, 0.8);
}

.column_G33 h2{
  margin: 8px;
  padding: 8px;
  font-size: 18px;
  color: rgba(0,100,0, 0.5);
}

.column_G33 p{
  margin: 2px;
  padding: 2px;
  font-size: 14px;
  color: rgba(0,100,0, 0.5);
}

.column_P50 {
  /*float: left;*/
  width: 50%;
  padding: 10px;
  z-index: 200;
}

.column_P51 {
  float: right;
  width: 50%;
  padding: 10px;
  text-align: right;
}

.column_P60 {
  float: left;
  width: 58%;
  padding: 10px;
  overflow: hidden;
  overflow-y: hidden;  
}
.column_P75 {
  float: left;
  width: 75%;
  padding: 10px;
}

.column_F100 {
  float: left;
  width: 99.75%;
  margin: 10px;
  padding: 15px;
  height: 230px;  
  box-shadow: 0 0 15px rgba(0, 150, 0, 0.8);
  border-radius: 15px;
}

.column_P100 {
  float: left;
  width: 100%;
  padding: 10px;
/*  height: 60px;   */
}

.column_F100 {
  float: left;
  width: 100%;
  padding: 10px;
  height: 300px;   
}

.column_G100 {
  float: left;
  width: 100%;
  padding: 10px;
  background-color: black;
  background-image: linear-gradient( to right, darkgreen, transparent, darkblue ) , url(../images/maps/map_clear.png); 
  height: 60px;   
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1400px) {

  .column_P25 {
    width: 47.5%;
  }  

  .column_G33 {
  width: 47.5%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  }

  .column_P33 {
    width: 47.5%;
  }  
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1000px) {

  .column_P25 {
    width: 46.5%;
  }  

  .column_G33 {
  width: 47.5%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  }

  .column_P33 {
    width: 100%;
  }

  .column_P50 {
    width: 50%;
    text-align: center;
  }

  .column_P51 {
    width: 50%;
    text-align: center;
  }

  .column_P75 {
    width: 100%;
    text-align: center;
  } 
  .column_P100 {
    width: 100%;
    text-align: center;
  } 
  .column_G100 {
    width: 100%;
    text-align: center;
  }   
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column_P15 {
    width: 100%;
  }

  .column_P25 {
    width: 95%;
  }

  .column_G33 {
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  }

  .column_P33 {
    width: 100%;
  }

  .column_P50 {
    width: 50%;
    text-align: center;
  }

  .column_P51 {
    width: 50%;
    text-align: center;
  }

  .column_P75 {
    width: 100%;
    text-align: center;
  } 
  .column_P100 {
    width: 100%;
    text-align: center;
  } 
  .column_G100 {
    width: 100%;
    text-align: center;
  }   
}

/* RESPONSIBLE DIVS */
      hr{
        color: rgb(0,100,0);
      }  

  .servicos{
              border: 1px solid #FFFFFF;    
              background-color: white;
              border-radius: 50%;
              height: 60px;
              object-fit: cover;
              width: 60px;  
              /* topo | direita | inferior | esquerda */
              margin: 2px 5px 2px 5px;
  } 

  .informations {
    display: none;
    font-family: Arial;
  }

/* eSTILO DA BARRA  */

    #top {
      margin: 0 auto;
    }
    #menuHeader {
      position: relative;
      width: 100%;
      background-color: rgba(0, 100, 0, 0.6);      
    }
    .menu-fixo  {
        position:fixed !important;
        top: 0;
        z-index: 99;
    }

/* ESTILO DO RODAPÉ FIXO */    
    .roda-fixo  {
        position:fixed !important;
        bottom: 0;
        z-index: 99;
        width: 100%;
        background: rgba(0,100,0,1.0);
    }    

/* ESTILO DAS TABELAS */    
table {
  border: 1px solid black;
  border-collapse: collapse;
  background-color: #f5f5f5;
  width: 100%;
  /*margin-bottom: 20px;*/
  font-size: 12px;
}

th, td {
  padding: 5px;
  text-align: left;
}

th {
  background-color: #333;
  color: #fff;
}

tr:nth-child(even) {
  background-color: #ddd;
}

tr:hover {
  background-color: #ccc;
}

.main{
  width: 275px;  
/* topo | direita | inferior | esquerda */  
  margin: 0 5px 5px 5px;
}

.brasao{
  height: 75px;  
/* topo | direita | inferior | esquerda */  
  margin: 0 5px 5px 5px;
}

/* ****************** ACCORDING ************************* */
    @import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

    * { 
      font-family: 'Lato', sans-serif;
    }

    body { 
      background-color: #ececec;
    }

    details {
      display: block; 
      width: auto;
      margin: 10px 0;
    }

    details p { 
      padding-left: 30px;
    }

    summary {
      display: flex; 
      background-color: rgba(0,100,0, 0.5);
      color: #fff;
      border-radius: 8px;
      padding: 5px;
      cursor: pointer;
      font-weight: 700;
      justify-content: flex-start;
      align-items: center;
    }

    summary::-webkit-details-marker {
       display: none;
    }

    summary:before {
       content: "+";
       font-size: 20px;
       font-weight: bold;
       margin: 0 5px;
       padding: 0;
       width: 20px;
       text-align: center;
    }

    details[open] summary:before {
      content: "-";
    }

.a {
    padding: 10 px;
}

/* unvisited link */
.a:link {
        text-decoration: none;
        color: #000000 ;
    }

/* visited link */
.a:visited {
        text-decoration: none;
        color: #000000 ;
    }

/* mouse over link */
.a:hover {
        text-decoration: none;
        color: #000000 ;
    }

/* selected link */
.a:active {
        text-decoration: none;
        color: #000000 ;
    }    