@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;1,400&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#logo-cabecote {
  width: 14%;
  margin-left: 60px;
}

#content-header {
  display: none;
}


#header-content {
  border: 0px solid black;
  background: url(images/cylinder2.jpg);
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 500px;
  width: 100%;
  margin: 0 auto;
}

#header-content #logo-menu {
  width: 100%;
  position: absolute;
  top: 30px;
  border: 0px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(120deg, #793E12 0%, #793E12 30%, rgb(255, 170, 6, 0.7) 31%, rgb(255, 170, 6, 0.7) 100%);
}

/*rgba(165, 85, 24, 0.7)*/

#menu-content {
  margin-right: 60px;
}

#hiden-menu {
  display: none;
}

#menu-content ul {
  list-style: none;
  cursor: pointer;
}

#menu-content ul li {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 1.22em;
  text-transform: uppercase;
  font-weight: 700;
  height: 60px;
  line-height: 25px;
  padding: 20px;
  margin-left: -13px;
  margin-right: -13px;
}

#menu-content ul li a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  padding: 5px;
}

#menu-content ul li a:hover {
  padding: 3px;
  text-decoration: none;
  color: #fff;
  border-top: 3px solid #fff;
}

#text-title {
  text-align: center;
  display: flex;
  flex-direction: column;
}

#header-content #text-title {
  margin-top: 300px;
  width: 70%;
  background-color: rgba(0, 0, 0, 0.5)
}

#header-content #text-title h1, h3 {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 300;
  padding-top: 5px;
  padding-bottom: 5px;
}

#header-content #text-title h1 {
  font-family: 'Lato', sans-serif;
  font-size: 48px;
  font-weight: bold;
}

#header-content #text-title h3 {
  font-size: 32px;
}

#main-card {
  background-color: #FFA006;
  padding-top: 20px;
  padding-bottom: 35px;
}

#card {
  display: flex;
  flex-direction: row;
  border: 3px solid #df941c;
  box-shadow: 3px 3px 3px 2px rgba(0, 0, 0, 0.4);
  width: 80%;
  margin: 0 auto;
  border-radius: 5px;
  flex: 1;
}

#card #image {
  display: flex;
  background-color: #793E12;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-right: 3px solid #F5FFFA;
}

#card #image img {
  width: 500px;
}

#card #description {
  background-color: #F5FFFA;
}

#description {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#description h1 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 35px;
}

#description p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  text-indent: 18px;
  text-align: justify;
  margin-left: 20px;
  margin-right: 15px;
  padding-bottom: 70px;
}

#description button {
  font-family: 'Lato', sans-serif;
  font-size: 40px;
  padding: 10px;
  margin: 5px;
  border-radius: 25px;
  border: 3px solid #793E12;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  cursor: pointer;
  background-color: #FFA006;
  color: #793E12;
  text-shadow: 1px 1px #000;
  transition: 0.4s;
}

#description button:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
  background-color: #eb9305;
  color: #793E12;
}

#twoservices {
  width: 100%;
  padding-bottom: 50px;
  background-color: #793E12;
}

#twoservices h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  padding: 25px;
  color: #fff;
  text-shadow: 2px 2px rgba(39, 39, 39, 0.6);
}

#twoservices #card-service {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
}

#service1 {
  background-image: url('images/service1.jpg');
}

#service2 {
  background-image: url('images/service2.jpg');
}

#service1, #service2 {
  background-size: cover;
  width: 400px;
  height: 320px;
  border: 3px solid #eb9305;
  border-radius: 8px;
  display: block;
  box-shadow: 3px 3px 3px 2px rgba(0, 0, 0, 0.4);
}

#service1>.hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}

#service1:hover>.hide {
  visibility: visible;
  opacity: 1;
}

#service2>.hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
}

#service2:hover>.hide {
  visibility: visible;
  opacity: 1;
}

.hide {
  background-color: rgba(0, 0, 0, 0.6589);
  height: 100%;
}

.text-service {
  font-family: 'Lato', sans-serif;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  padding-top: 250px;
}

#footerId {
  background: linear-gradient(90deg, rgb(20, 20, 20), #302c2c 100%);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-bottom: 20px;
}

#footerId #footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footerId #footer-contact h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: #fff;
  font-weight: 200;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid white;
}

#footerId #footer-contact i {
  font-size: 18px;
  color: #fff;
  margin-left: 3px;
  margin-bottom: 12px;
}

#footerId #footer-contact i span {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
}

#footerId #footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#footerId #footer-menu h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: #fff;
  font-weight: 200;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid white;
}

#footerId #footer-menu ul {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  list-style: none;
  margin-left: 3px;
}

#footerId #footer-menu ul li {
  margin-top: 5px;
  margin-bottom: 5px;
}

#footerId #footer-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 100;
}

#last-footer {
  background-color: #000;
  color: white;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 11.658px;
  text-align: center;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
}

#last-footer a {
  text-decoration: none;
  color: #fff;
}

#last-footer a:visited {
  text-decoration: none;
  color: #fff;
}

.button-whatsapp {
  display: flex;
  z-index: 1;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: #25d366;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  bottom: 45px;
  right: 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

a .conta {
  font-size: 40px;
  text-decoration: none;
  color: #fff;
  text-shadow: 1px #000;
}

/* Contact Page */

#contact-us {
  width: 100%;
  background: url('images/power.jpg');
  background-size: cover;
}

#background {
  background: #353433;
  background: linear-gradient(90deg, #4e4e4e, rgb(5, 5, 5) );
}

#contact-us #background #two-frames {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}

#contact-us #background h1 {
  padding-top: 10px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  text-shadow: 1px 1px 1px #000;
  font-weight: 400;
  color: white;
}

#form {
  background: linear-gradient( 90deg, #FFA006, #000);
  border-radius: 10px;
  padding: 10px;
}

#form,#map {
  width: 50%;
  border: 0px solid #000;
  box-shadow: 1px 1px 1px #000;
  margin-right: 30px;
}

#form-content {
  display: grid;
  grid-template-columns: 25% 70%;
}

#map {
  background: linear-gradient( 90deg, #793E1299, #793E1230);
  border-radius: 10px;
  padding-bottom: 20px;
}

#map #map-location {
  width: 95%;
  height: 400px;
  border-radius: 8px;
  margin: 0 auto;
}

#map p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  margin-left: 20px;
}

.item {
  margin: 2px;
  background: transparent;
  padding: 2px;
  color: #FFF;
}

#whatsapp {
  margin-top: 20px;
  width: 100%;
  border: 1px solid red;
  text-align: center;
  font-size: 38px;
  border-radius: 10px;
  border: 1px solid white;
  background-color: #1a9447;
  padding: 10px 10px;
  transition: 0.3s;
  cursor: pointer;
}

#whatsapp a i span {
  font-family: 'Roboto', sans-serif;
  color: white;
}

#whatsapp a i {
  color: white;
}

#whatsapp:hover {
  background-color: #25d366;
}

.item input {
  padding: 8px;
  width: 90%;
  outline: 0;
  border: 0;
}

.item textarea {
  width: 90%;
  padding: 8px;
  outline: 0;
  border: 0;
}

.item input, textarea {
  font-family: 'Roboto', sans-serif;
  border-radius: 4px;
  font-size: 18px;
  color: #000;
}

.item input:focus, textarea:focus {
  outline: 0;
}

.item button {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #FFA00670;
  cursor: pointer;
  transition: 0.3s;
}

.item button:hover{
  background: #FFA006;
  border: 0.5px solid white;
}

.title-contact {
  font-family: 'Lato', sans-serif;
  text-align: center;
  font-weight: 300;
  padding-bottom: 20px;
  padding-top: 10px;
  font-size: 28px;
  color: white;
}

.text-contact {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-align: right;
}


@media only screen and (max-width: 960px) {

  body{
    overflow-x: hidden;
  }

  #header-content {
    display: none;
  }
  #content-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('images/cylinder2.jpg');
    background-size: cover;
  }
  #content-header #logo-image {
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, rgba(121, 62, 18, 0.7) 0%, rgba(121, 62, 18, 0.7) 45%, rgba(255, 170, 6, 0.7) 56%, rgba(255, 170, 6, 0.7) 100%)
  }
  #content-header #logo-image img {
    width: 35%;
  }
  #content-header #menu-mobile {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: display 0.15s ease-out;
  }
  #content-header #menu-mobile ul {
    font-family: 'Roboto', sans-serif;
    list-style: none;
    color: white;
    font-size: 1.22em;
    font-weight: 300;
    cursor: pointer;
    display: none;
    transition: display 0.15s ease-out;
  }
  #content-header #menu-mobile ul li {
    padding-top: 1.5px;
    padding-bottom: 1.5px;
    transition: 0.3s;
  }
  #content-header #menu-mobile ul li a {
    text-decoration: none;
    color: #FFF;
  }
  #content-header #menu-mobile ul li a:active {
    color: #FFA006;
  }
  #align {
    width: 100%;
    margin-left: 10px;
  }
  #menu-mobile #align button {
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    border: none;
    padding: none;
    background: transparent;
    cursor: pointer;
    color: white;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.6);
    transition: filter 0.8s;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #menu-mobile #align button:active {
    color: #793E12;
  }
  #content-header #text-title {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
  }
  #content-header #text-title h1, h3 {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-weight: 300;
    padding-top: 5px;
    padding-bottom: 5px;
    text-shadow: 2px 2px rgba(39, 39, 39, 0.6);
  }
  #content-header #text-title h1 {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: bold;
  }
  #header-content #text-title h3 {
    font-size: 22px;
  }
  #description {
    margin-right: 3px;
  }

  #main-card {
    width: 100%;
  }

  #card {
    display: flex;
    flex-direction: column;
  }
  #card #image {
    display: flex;
    width: 99.63%;
    background-color: #793E12;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-right: 0px solid #F5FFFA;
  }

  #card #image img {
    width: 100%;
  }

  #image {
    border-right: 0px;
  }

  #twoservices #card-service{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  #twoservices #card-service #service1,#service2 {
    width: 90%;
  }

  #description {
    display: flex;
    flex-direction: column;
  }

  #description button {
    margin-top: -40px;
    margin-bottom: 30px;
  }

  #footerId {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  #footerId #footer-contact {
    width: 100%;
    align-items: center;
  }

  #footerId #footer-menu {
    width: 100%;
    align-items: center;
  }

  #footerId #footer-menu ul {
    text-align: center;
  }

  .button-whatsapp {
    right: 20px;
  }

  #last-footer {
    font-size: 14px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
  }

  /* Contact */

  #contact-us #background #two-frames { 
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 10px 10px;
  }

  #form,#map{
    width: 100%;
  }

  #form-content{
    display: flex;
    flex-direction: column;
  }

  #form-content .item {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
  }

  #form-content #two-buttons {
    justify-content: space-between;
    width: 90%;
  }
 
}