:root {
  --cor-0: #fff;
  --cor-1: #eec297;
  --cor-2: #e29255;
  --black: #13131a;
  --bg: #010103;
  --border: 1px solid rgba(255, 255, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: var(--cor-0);
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  padding-top: 48px;
}

section {
  padding: 48px 32px;
  margin: 0 auto;
  max-width: 1200px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  border-bottom: var(--border);
  background-color: var(--bg);
}

.header section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 28px;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar a {
  margin: 0 16px;
  font-size: 19px;
  color: var(--cor-0);
transition: all 0.2s ease;}

.navbar a:hover {
  color: var(--cor-1);
  border-bottom: 1px solid var(--cor-1);
  padding-bottom: 8px;
  font-size: 20px;
}

.icons i {
  color: var(--cor-0);
  margin: 8px;
  cursor: pointer;
  font-size: 22px;
  transition: all 0.2s ease;
}

.icons i:hover {
  font-size: 27px;
}

.btn {
  background-color: var(--cor-1);
  color: var(--black);
  padding: 12px 30px;
  font-size: 21px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 16px;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn:hover,
.btn.active-touch {
  background-color: var(--cor-0);
  color: var(--cor-2);
  box-shadow: 0 0 10px var(--cor-2);
  transform: scale(1.05);
}

.home-container {
  background: url(./assets/img/home-img.jpg);
  height: 100vh;
  background-position: center;
  background-size: cover;
  padding-top: 82px;
}

.home-container section {
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.content {
  max-width: 990px;
}

.content h3 {
  font-size: 70px;
  max-width: 560px;
  line-height: 1.2;
}

.content p {
  max-width: 560px;
  font-size: 19px;
  font-weight: 300;
  padding: 16px 0;
  line-height: 1.8;
}

.title {
  font-size: 58px;
  color: var(--cor-1);
  text-align: center;
  padding-bottom: 24px;
}

.title span {
  color: var(--cor-0);
}

.sobre .row {
  display: flex;
  align-items: center;
  background-color: var(--black);
}

.content-sobre {
  padding: 0 27px;
}

.content-sobre h3 {
  font-size: 27px;
  color: var(--cor-1);
  line-height: 1.2;
}

.content-sobre p {
  font-size: 14px;
  line-height: 1.8;
  padding: 10px 0;
  color: var(--cor-0);
  text-align: justify;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box{
  text-align: center;
  border: var(--border);
  padding: 4rem;
  cursor: pointer;
    transition: all 0.2s ease;

}

.menu .box-container .box img {
  height: 120px;
  border-radius: 50%;
}

.menu .box-container .box h3 {
  color: var(--cor-0);
  font-size: 18px;
  padding: 10px 0;
}

.menu .box-container .box .price {
  color: var(--cor-0);
  font-size: 20px;
}

.menu .box-container .box .price span {
  font-size: 14px;
  text-decoration: line-through;
  font-weight: 300;
  color: #aaa;
}

.menu .box-container .box:hover {
  background-color: #f3d5b5;
}

.menu .box-container .box:hover > * {
  color: var(--black);
}

.menu .box-container .box:hover .price span {
  color: var(--black);
}

.menu .box-container .box .btn {
  font-size: 18px;
  border: 1px solid var(--cor-2);
}

.box i {
  color: #e29255;
  width: 35px;
}

.review .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.review .box-container .box {
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
  transition: background 0.2s;
}

.review .box-container .box p {
  font-size: 15px;
  padding: 20px 0;
  line-height: 22px;
  font-weight: lighter;
}

.review .box-container .box h3 {
  font-size: 20px;
  margin: 5px 0;
}

.review .box-container .box .profile {
  border-radius: 50%;
  width: 120px;
}

.mapa {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.mapa iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
}

.footer {
  text-align: center;
  border-top: var(--border);
}

.footer .share {
  padding-bottom: 10px;
}

.footer .share i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 41px;
  font-size: 25px;
  cursor: pointer;
  border-radius: 50%;
    transition: all 0.2s ease;

}

.footer .share i:hover {
  background-color: var(--cor-1);
  color: var(--black);
}

.footer p {
  font-size: 12px;
}

/*  MEDIA QUERIES */

@media (max-width: 1199px) and (min-width: 1025px) {
  .content h3 {
    font-size: 50px;
  }
  .content p {
    font-size: 18px;
  }
  .title {
    font-size: 45px;
  }
  .navbar a {
    font-size: 19px;
    margin: 0 12px;
  }
  .sobre .content-sobre h3 {
    font-size: 26px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .content h3 {
    font-size: 50px;
  }
  .content p {
    font-size: 18px;
  }
  .title {
    font-size: 45px;
  }
  .navbar a {
    font-size: 19px;
    margin: 0 12px;
  }

  .sobre .row {
    flex-direction: column;
    align-items: center;
  }
  .sobre .row .content-sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sobre .row .container-img img {
    max-width: 100%;
    height: auto;
    border-radius: 1px;
    padding-bottom: 15px;
  }
  .sobre .row .content-sobre h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 5px;
  }
  .sobre .row .content-sobre p {
    font-size: 17px;
    padding: 8px 20px;
    text-align: justify;
  }
  .sobre .row .content-sobre .btn {
    font-size: 18px;
    padding: 10px 20px;
    margin-bottom: 20px;
  }

  .menu .box-container .box {
    padding: 3rem;
  }
  .menu .box-container .box h3 {
    font-size: 19px;
  }
  .menu .box-container .box .price span {
    font-size: 15px;
  }
  .menu .box-container .box .btn {
    font-size: 19px;
  }

  .review .box-container .box img.profile {
    width: 150px;
    height: auto;
  }
  .review .box-container .box p {
    font-size: 16px;
    font-weight: 300;
  }
  .review .box-container .box h3 {
    font-size: 19px;
  }
  .review .box-container .box i {
    font-size: 20px;
  }
  .footer p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
    color: var(--cor-0);
  }
  .navbar {
    display: none;
    flex-direction: column;
    gap: 10px;
    background-color: var(--bg);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-top: var(--border);
    transition: all 0.3s ease;
  }
  .navbar.active {
    display: flex;
  }
  .navbar a {
    font-size: 15px;
    margin: 5px 0;
  }
  .navbar a:hover {
    font-size: 16px;
    margin: 0;
  }

  .content h3 {
    font-size: 28px;
    line-height: 1.2;
  }
  .content p {
    font-size: 14px;
    line-height: 1.5;
  }
  .title {
    font-size: 32px;
  }
  .btn {
    font-size: 14px;
    padding: 10px 15px;
    margin-top: 4px;
  }

  .sobre .row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
  }
  .sobre .row .container-img img {
    max-width: 100%;
    height: auto;
    border-radius: 1px;
  }
  .sobre .row .content-sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sobre .row .content-sobre h3 {
    font-size: 22px;
  }
  .sobre .row .content-sobre p {
    font-size: 12px;
    text-align: center;
  }
  .sobre .row .content-sobre .btn {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 10px;
  }

  .menu .box-container {
    grid-template-columns: 1fr;
  }
  .menu .box-container .box {
    padding: 30px;
  }
  .menu .box-container .box img {
    max-width: 90px;
    height: auto;
  }
  .menu .box-container .box h3 {
    font-size: 17px;
    padding-bottom: 5px;
  }
  .menu .box-container .box p {
    font-size: 15px;
    padding-bottom: 10px;
  }
  .menu .box-container .box .price {
    margin-bottom: 6px;
  }
  .menu .box-container .box .btn {
    font-size: 15px;
  }

  .review .box-container {
    grid-template-columns: 1fr;
  }
  .review .box-container .box img.profile {
    width: 120px;
    height: auto;
  }
  .review .box-container .box p {
    font-size: 14px;
    font-weight: 300;
  }
  .review .box-container .box h3 {
    font-size: 17px;
  }

  .mapa iframe {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
  .footer .share i {
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    margin: 0 5px;
  }
  .footer p {
    font-size: 13px;
  }
}

@media (max-width: 599px) {
  .header .logo img {
    width: 55px !important;
      transition: all 0.2s ease;

  }

  .icons i {
    font-size: 17px;
  }
  .icons i:hover {
    font-size: 19px;
  }

  .menu .box-container .box img {
    max-width: 80px;
  }
  .menu .box-container .box h3 {
    font-size: 16px;
  }
  .menu .box-container .box p {
    font-size: 14px;
  }
  .menu .box-container .box .price {
    margin-bottom: 5px;
  }
  .menu .box-container .box .btn {
    font-size: 14px;
  }
}
