/* CSS Reset */
* {
  margin: 0;
  border: 0;
  padding: 0;
}

body {
  font-family: 'Titillium Web', sans-serif;
  color: #666666;
  text-align: center !important;
}

.Container {
  margin: 0 auto;
}

.Flex {
  display: flex;
  justify-content: space-evenly;
}

.Flex2 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

/* HEADER */
#logo {
  background-color: #ffffff;
  width: 100%;
  height: 160px;
  margin-top: 0px;
  border-bottom: 1px solid #337cbb;
}

#logo img {
  padding-top: 30px;
}
/*------------------------------*/

/* DIV containerTubos */
nav div a {
  color: #337cbb !important;
}

#tubos {
  font-size: 10px;
  margin-top: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #337cbb;
}

div.tab-pane {
  padding-top: 20px;
}

table tbody tr td {
  text-align: center;
}

table thead tr th {
  text-align: center;
}
/*------------------------------*/

/* DIV containerContato */
fieldset {
  border: 1px solid #337cbb !important;
  padding: 20px !important;
}

fieldset legend {
  color: #337cbb;
  width: 100px;
  font-size: 20px;
  text-align: left;
  padding-left: 15px;
}

#containerContato {
  margin-bottom: 20px;
}
/*------------------------------*/

/* FOOTER */
iframe {
  border: 0;
}

#googleMaps{
  margin-top: 30px;
  display: none;
}

#rodape {
  color: #ffffff;
  background-color: #337cbb;
  width: 100%;
  height: 130px;
  bottom: 0px;
  padding-top: 20px;
  padding-left: 20px;
  text-align: left;
}

#lblWhatsapp {
  cursor: pointer; 
  text-decoration: underline;
}
/*------------------------------*/

/* Smartphone Landscape */
@media (min-width: 576px) {
  .Container {
    max-width: 540px;
  }
}

/* Tablet Portrait */
@media (min-width: 768px) {
  .Container {
    max-width: 720px;
  }
}

/* Tablet Landscape */
@media (min-width: 992px) {
  .Container {
    max-width: 960px;
  }
}

/* PC */
@media (min-width: 1200px) {
  .Container {
    max-width: 1140px;
  }

  /* HEADER */
  #logo {
    position: fixed;
    height: 160px;
  }
  /*------------------------------*/

  /* DIV containerTubos */
  #tubos {
    font-size: 15px;
    margin-top: 180px;
    margin-bottom: 25px;
  }
  /*------------------------------*/

  /* DIV containerContato */
  #containerContato {
    margin-bottom: 290px;
  }
  /*------------------------------*/

  /* FOOTER */
  #rodape {
    position: fixed;
    height: 280px;
    padding-top: 0px;
    padding-left: 0px;
  }

  #googleMaps {
    display: inline;
  }

  .Flex2 {
    flex-direction: row;
    align-items: center;
  }
  /*------------------------------*/
}