/* Variáveis globais */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 12rem;
}
@media (max-width: 430px) {
  body body {
    font-size: 16rem;
  }
}
.site-container {
  max-width: 1248rem;
  padding: 0 24rem;
  margin: 0 auto;
}
/* Cabeçalho */
header {
  background: rgba(130, 43, 57, 0.7);
  color: #fff;
  height: 110rem;
  position: relative;
  z-index: 1;
  /* Responsividade */
}
@media (max-width: 768px) {
  header {
    min-height: 100rem;
    height: auto;
    padding-bottom: 20rem;
    background: #822b39;
  }
}
header .site-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  header .site-container {
    padding: 0 10rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
header .logo {
  width: 318rem;
}
@media (max-width: 768px) {
  header .logo {
    margin-top: 20rem;
    width: 230rem;
  }
}
header .logo h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
header .logo p {
  font-size: 0.9rem;
  font-style: italic;
}
@media (max-width: 768px) {
  header nav {
    display: none;
    height: 0;
    transition: height 0.3s;
  }
  header nav.active {
    display: block;
    height: 100%;
    margin-top: 20rem;
  }
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 45rem;
  margin-left: -150rem;
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    gap: 20rem;
  }
}
header nav ul li a {
  font-size: 14rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
}
header nav ul li a:hover {
  color: #ffddb3;
}


header nav ul li ul {
  position: absolute;
  top: 22px;
  margin-left: -10px;
  padding: 15px;
  background: rgba(130, 43, 57, 0.7);
  display: none;
}
header nav ul li:hover ul, header nav ul li.over ul{display:block;}
header nav ul li ul li{
  display:block;
  width:400px;
  line-height: 30px;
}
header .social-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}
@media (max-width: 768px) {
  header .social-media {
    margin-top: 20rem;
  }
  header .social-media img {
    width: 25rem;
  }
}
header .social-media a {
  display: inline-block;
  transition: all 0.3s;
}
header .social-media a:hover {
  opacity: 0.7;
}
header .btn-hamburger {
  display: none;
  position: absolute;
  right: 10rem;
  top: 20rem;
  background: transparent;
  border: none;
}
@media (max-width: 768px) {
  header .btn-hamburger {
    display: block;
    cursor: pointer;
  }
}
header .btn-hamburger .bar {
  display: block;
  width: 25rem;
  height: 3px;
  background: #f4efe7;
  margin: 5rem 0;
  /* transition: all 0.3s ease; */
}
/* Hero Section */
.hero {
  background: #cd8e8d;
  margin-top: -110rem;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 0;
  }
}
.hero .site-container {
  position: absolute;
  left: 50%;
  width: 100%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.hero h2 {
  color: #f4efe7;
  font-weight: 400;
  font-size: 86rem;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  margin-top: 55rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .hero h2 {
    font-size: 20rem;
    margin-top: 0;
  }
}
.hero img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
/* Conteúdo principal (Main) */
main {
  background-color: #fff;
}
.about {
  padding-top: 120rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60rem;
  margin-bottom: 250rem;
}
@media (max-width: 768px) {
  .about {
    padding-top: 30rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30rem;
    margin-bottom: 100rem;
  }
}
.about img {
  width: 624rem;
  display: block;
  margin-left: -80rem;
}
@media (max-width: 768px) {
  .about img {
    width: 300rem;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .about .about-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.about .about-content h2 {
  color: #dbb85a;
  font-weight: 400;
  font-size: 86rem;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  margin-top: 55rem;
  margin-bottom: 35rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 24rem;
    margin-top: 20rem;
    margin-bottom: 20rem;
    text-align: center;
  }
}
.about .about-content p {
  font-size: 24rem;
  line-height: 140%;
  letter-spacing: 0.04em;
  margin-bottom: 90rem;
}
@media (max-width: 768px) {
  .about .about-content p {
    font-size: 16rem;
    text-align: center;
    margin-bottom: 30rem;
  }
}
.about .about-content .btn {
  max-width: 284rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20rem;
  height: 84rem;
  background-color: #a44453;
  color: #f4efe7;
  text-decoration: none;
  border-radius: 10rem;
  font-size: 22rem;
  text-transform: uppercase;
  transition: background-color 0.3s;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .about .about-content .btn {
    width: 200rem;
    height: 42rem;
    font-size: 14rem;
  }
}
.about .about-content .btn:hover {
  background: #83313e;
}
.services {
  margin-bottom: 250rem;
}
@media (max-width: 768px) {
  .services {
    margin-bottom: 50rem;
    text-align: center;
  }
}
.services h2 {
  color: #010000;
  font-weight: 400;
  font-size: 78rem;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  margin-top: 55rem;
  margin-bottom: 35rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .services h2 {
    font-size: 24rem;
    margin-bottom: 30rem;
    margin-top: 30rem;
  }
}
.text {
    font-size: 24rem;
    line-height: 140%;
    letter-spacing: 0.04em;
    margin-bottom: 90rem;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 colunas iguais */
  gap: 24rem;
  /* Espaço entre as colunas */
}
@media (max-width: 768px) {
  .services .services-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 3 colunas iguais */
  }
}
@media (max-width: 768px) {
  .services .services-grid .service {
    margin-bottom: 40rem;
  }
}
.services .services-grid .service img {
  max-width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .services .services-grid .service img {
    max-width: auto;
    width: 300rem;
    margin: 0 auto;
  }
}
.services .services-grid .service h3 {
  font-size: 48rem;
  color: #dbb85a;
  margin-bottom: 10rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 28rem;
}
@media (max-width: 768px) {
  .services .services-grid .service h3 {
    font-size: 24rem;
  }
}
.services .services-grid .service p {
  font-size: 22rem;
  line-height: 140%;
  font-weight: 400;
  color: #010000;
  margin-top: 17rem;
}
@media (max-width: 768px) {
  .services .services-grid .service p {
    font-size: 18rem;
  }
}
.location {
  margin-bottom: 250rem;
}
@media (max-width: 768px) {
  .location {
    margin-bottom: 50rem;
  }
}
.location h2 {
  color: #010000;
  font-weight: 400;
  font-size: 78rem;
  line-height: 100%;
  font-family: "Oswald", sans-serif;
  margin-bottom: 50rem;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .location h2 {
    font-size: 24rem;
    text-align: center;
    margin-bottom: 30rem;
  }
}
.location iframe {
  width: 100%;
  height: 430rem;
  border: none;
  border-radius: 20rem;
}
/* Rodapé */
footer {
  display: flex;
  align-items: center;
  height: 400rem;
  background-color: #a44453;
}
@media (max-width: 768px) {
  footer {
    height: auto;
  }
}
footer .site-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  margin-top: 83rem;
}
@media (max-width: 768px) {
  footer .site-container {
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30rem;
  }
}
footer .site-container .box-logo {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer .site-container .box-logo {
    align-items: center;
    flex: 100%;
  }
  footer .site-container .box-logo .logo {
    margin: 0 auto 30rem;
    width: 100rem;
  }
}
footer .site-container .footer-info p {
  color: #f4efe7;
  text-decoration: none;
  font-size: 16rem;
  font-weight: 200;
  letter-spacing: 0.22em;
}
footer .site-container nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15rem;
}
@media (max-width: 768px) {
  footer .site-container nav ul {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}
footer .site-container nav ul li a {
  color: #f4efe7;
  text-decoration: none;
  font-size: 16rem;
  font-weight: 400;
  letter-spacing: 0.22em;
}
footer .site-container nav ul li a:hover {
  color: #ffddb3;
}
@media (max-width: 768px) {
  footer .site-container .footer-info {
    width: 100%;
    text-align: center;
    margin-top: 20rem;
  }
}
footer .site-container .social-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}
@media (max-width: 768px) {
  footer .site-container .social-media {
    margin-top: 20rem;
    margin-bottom: 30rem;
  }
}
@media (max-width: 768px) {
  footer .site-container .social-media img {
    width: 25rem;
  }
}
footer .site-container .social-media a {
  display: inline-block;
  transition: all 0.3s;
}
footer .site-container .social-media a:hover {
  opacity: 0.7;
}
footer .site-container .links-info {
  width: 100%;
  min-height: 170rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .site-container .links-info {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 20rem;
  }
}
