:root {
  --main-color: #003cfe;
  --secondary-color: #04289d;
  --black: #000000;
  --bg: rgb(130, 130, 130);
  --background: #fff;
  --border: 0.1rem solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/*Começo do header*/

.header {
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: var(--black);
  border-bottom: 0.1rem solid var(--main-color);
}

.section {
  padding: 3rem 2rem;
  margin: 0 auto;
  width: 100%;
}

.header section {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-comum a {
  margin: 0 1rem;
  font-size: 1.8rem;
  color: #fff;
}

.menu-comum a:hover {
  border-bottom: solid 2px var(--main-color);
  font-size: 2rem;
  transition: all 0.5s ease;
}

@media (max-width: 999px) {
  .menu-hamburguer {
    position: fixed;
    right: -300px;
    top: 0;
    width: 200px;
    height: 100%;
    background-color: var(--main-color);
    z-index: 3;
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);
  }

  .menu-hamburguer.ativo {
    right: 0;
  }

  .menu-hamburguer ul {
    list-style-type: none;
    padding: 0;
    margin-top: 60px;
  }

  .menu-hamburguer ul li {
    padding: 15px 30px;
  }

  .menu-hamburguer ul li:hover {
    background-color: var(--black);
  }

  .menu-hamburguer ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .botao-menu {
    background-color: var(--main-color);
    color: #fff;
    position: fixed;
    right: 20px;
    top: 25px;
    z-index: 3;
    border-radius: 5px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
  }

  .botao-menu:hover {
    background-color: var(--secondary-color);
  }

  .botao-menu.ativo {
    right: 220px;
  }

  .background {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 29, 29, 0.822);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }

  .background.ativo {
    opacity: 50;
    visibility: visible;
  }
}

.menu-hamburguer {
  position: fixed;
  right: -300px;
  top: 0;
  width: 200px;
  height: 100%;
  background-color: var(--main-color);
  z-index: 3;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);
  transition: 0.5s ease;
  visibility: hidden;
}

.menu-hamburguer.ativo {
  right: 0;
}

.menu-hamburguer ul {
  list-style-type: none;
  padding: 0;
  margin-top: 100px;
}

.menu-hamburguer ul li {
  padding: 15px 30px;
  cursor: pointer;
}

.menu-hamburguer ul li:hover {
  background-color: var(--black);
}

.menu-hamburguer ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.background {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 60, 60, 0.266);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.background.ativo {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 999px) {
  .botao-menu {
    background-color: var(--main-color);
    color: #fff;
    position: fixed;
    right: 20px;
    top: 25px;
    z-index: 3;
    border-radius: 5px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.5s ease;
  }

  .botao-menu:hover {
    background-color: var(--secondary-color);
  }

  .botao-menu.ativo {
    right: 220px;
  }

  .menu-comum {
    visibility: hidden;
  }
  .menu-hamburguer {
    visibility: visible;
  }
}

/*Fim do header*/

/*Começo da main*/
/*Section Home*/

.buttons {
  margin: 1rem;
  padding: 2rem;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
}

#btn-ctt {
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 2rem 1rem;
  font-size: 1.7rem;
  cursor: pointer;
  margin-top: 1rem;
  border-radius: 10px;
  margin: 1rem;
}
.buttons i {
  font-size: 20px;
  padding-right: 10px;
}

#btn-ctt:hover {
  background-color: #031a63;
}

#btn-address {
  text-align: center;
  background: #fff;
  color: #000000;
  padding: 2rem 1rem;
  font-size: 1.7rem;
  cursor: pointer;
  margin-top: 1rem;
  border-radius: 10px;
  margin: 1rem;
  border: solid 2px #000000;
}

#btn-address:hover {
  background-color: #dbdadad5;
}

.conteudo {
  background-color: #000000;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: calc(80px + 2rem);
}
.conteudo span {
  color: #000000;
  background: #003cfe;
}

.content {
  max-width: 100rem;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.content h3 {
  font-weight: bold;
  margin: 1rem;
  padding: 2rem;
  font-size: 4rem;
  text-align: center;
  color: #fff;
}

.content p {
  color: #fff;
  margin: 1rem;
  padding: 2rem;
  font-size: 2rem;
  text-align: center;
  word-spacing: 5px;
  line-height: 3rem;
}

.conteudo #home {
  margin: auto;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
/*Section home*/

/*Section info*/

.info {
  background-color: rgb(232, 238, 238);
  width: 100%;
  margin: auto;
  justify-content: center;
  display: flex;
}

.container-info {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.grid-info {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-info h2 {
  font-size: 5rem;
  text-align: center;
}

.grid-info p {
  font-size: 2rem;
  text-align: center;
}

/*Section Info*/

/*Section services*/

.services {
  padding-top: 9rem;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.services-container {
  padding-top: 2.5rem;
}

.services .stitle {
  font-size: 5rem;
  text-align: center;
}

.services .stext {
  padding-top: 2rem;
  font-size: 2rem;
  text-align: center;
}

.services-grid {
  align-items: center;
  justify-content: center;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 4rem auto;
  padding: 2rem 2rem;
  flex-wrap: wrap;
}

.services-grid h6 {
  font-size: 2rem;
}

.services-grid p {
  font-size: 1.8rem;
  font-weight: 200;
  padding-top: 2rem;
  text-align: left;
}

.services img {
  margin: 1rem;
  background-color: #d7d7d796;
  border: 2px solid #d7d7d796;
  border-radius: 20%;
}

.card-one {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(59, 58, 58, 0.068);
  border-radius: 5%;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-one:hover {
  border: 1px solid #000000;
}

.card-two {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(59, 58, 58, 0.068);
  border-radius: 5%;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-two:hover {
  border: 1px solid #000000;
}

.card-three {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(59, 58, 58, 0.068);
  border-radius: 5%;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-three:hover {
  border: 1px solid #000000;
}

.card-four {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(59, 58, 58, 0.068);
  border-radius: 5%;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.card-four:hover {
  border: 1px solid #000000;
}
/*Section info*/

/*Section review*/
.review {
  background-color: var(--background);
  width: 100%;
  margin: auto;
  justify-content: center;
  display: flex;
  padding-top: 80px;
  padding-bottom: 80px;
}

.container-review {
  padding-top: 2.5rem;
  margin: auto;
  align-items: center;
  justify-content: center;
}

.review-title h3 {
  font-size: 5rem;
  text-align: center;
}

.review-title p {
  padding-top: 2rem;
  font-size: 2rem;
  text-align: center;
}

.review-cards {
  align-items: center;
  justify-content: center;
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 4rem auto;
  padding: 2rem 2rem;
  flex-wrap: wrap;
}

.review-comment .stars {
  padding: 5px;
  font-size: 20px;
}

.review-comment {
  width: 500px;
  height: 230px;
  border: 1px solid rgba(59, 58, 58, 0.068);
  border-radius: 5%;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.review-comment p {
  padding: 15px 0px;
  font-size: 2rem;
  font-weight: 300;
  padding-bottom: 80px;
}

.review-row {
  width: 400px;
  height: 1px;
  background-color: #00000020;
}

.review-comment .name {
  padding-top: 1px;
  padding-bottom: 10px;
  font-weight: bold;
}

.address {
  background-color: rgb(232, 238, 238);
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.container-address {
  align-items: center;
  justify-content: center;
}

.address-title h3 {
  margin-top: 2.5rem;
  font-size: 5rem;
  text-align: center;
}

.address-title p {
  padding-top: 2rem;
  font-size: 2rem;
  text-align: center;
}

.address-cards {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  width: 100%;
  padding: 30px;
  flex-wrap: wrap;
}

.address-card div {
  width: 480px;
  height: 150px;
  border: 1px solid rgba(59, 58, 58, 0.068);
  border-radius: 2%;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 30px;
  margin: 20px;
}

.address-card h3 {
  font-size: 2rem;
}

.address-card p {
  font-size: 1.8rem;
  font-weight: 200;
  padding-top: 2rem;
  text-align: left;
}

.map {
  padding: 50px;
}

.btn-final {
  background-color: rgb(232, 238, 238);
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.footer {
  background-color: var(--black);
}

.direitos {
  display: flex;
  justify-content: space-between;
}

.direitos div {
  padding: 20px 100px;
}

.direitos h1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 200;
  padding-top: 2rem;
  text-align: right;
}
.direitos h1 a {
  color: #fff;
  text-decoration: underline;
}
