@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
.restaurante__button {
  background-color: #E84C3D;
  height: max-content;
  width: max-content;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.restaurante__button:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .restaurante__button {
    font-size: 0.8rem;
    padding: 0.6rem 2rem;
  }
}

.infraestrutura__button {
  background-color: #3D82C5;
  height: max-content;
  width: max-content;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.infraestrutura__button:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .infraestrutura__button {
    font-size: 0.8rem;
    padding: 0.6rem 2rem;
  }
}

.lago__button {
  background-color: #2E8B57;
  height: max-content;
  width: max-content;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  text-decoration: none;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lago__button:hover {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .lago__button {
    font-size: 0.8rem;
    padding: 0.6rem 2rem;
  }
}

.page__home-content {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page__home-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  background-color: #000;
  filter: brightness(30%);
  z-index: 0;
}
.page__home-content__text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.page__home-content__text h1 {
  font-size: 6rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.page__home-content__text p {
  font-size: 2.25rem;
  font-family: "Open Sans", sans-serif;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.page__home-content a {
  position: absolute;
  bottom: 20px;
  left: 48%;
  font-size: 4.7rem;
  color: #fff;
  z-index: 1;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.page__home-content a:hover {
  transform: translateX(-50%) translateY(5px);
}
@media (max-width: 1024px) {
  .page__home-content__text h1 {
    font-size: 4rem;
  }
  .page__home-content__text p {
    font-size: 1.5rem;
  }
  .page__home-content a {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .page__home-content__text h1 {
    font-size: 2.5rem;
  }
  .page__home-content__text p {
    font-size: 1rem;
  }
  .page__home-content a {
    font-size: 2rem;
  }
}

.page__home-background-restaurante {
  background-image: url("../assets/imagens/pesqueiro_4.jpg");
}

.page__home-background-infraestrutura {
  background-image: url("../assets/imagens/pesqueiro_5.jpg");
}

.page__home-background-lago {
  background-image: url("../assets/imagens/pesqueiro_lago.jpg");
}

.contact__section {
  width: 100%;
  min-height: 200px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #d9d9d9;
  padding: 2rem;
}
.contact__section__text {
  text-align: center;
}
.contact__section__text h1 {
  font-size: 2.5rem;
  font-family: "Playfair Display SC", serif;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.contact__section__text p {
  font-size: 1.75rem;
  font-family: "Open Sans", sans-serif;
  margin: 0;
}
.contact__section {
  /* responsivo */
}
@media (max-width: 1024px) {
  .contact__section {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .contact__section__text h1 {
    font-size: 2rem;
  }
  .contact__section__text p {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .contact__section {
    padding: 1rem;
  }
  .contact__section__text h1 {
    font-size: 1.6rem;
  }
  .contact__section__text p {
    font-size: 1rem;
  }
}

.galeria {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.galeria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  background-color: #000;
  filter: brightness(30%);
  z-index: 0;
}
.galeria__content {
  height: max-content;
  width: 60%;
  background-color: #fff;
  border-radius: 5px;
  padding: 3rem 3rem;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.galeria__content h1 {
  font-size: 4.375rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  margin-bottom: 0.75rem;
}
.galeria__content p {
  font-size: 2.2rem;
  font-family: "Open Sans", sans-serif;
  color: #666;
  margin-bottom: 2rem;
}
@media (max-width: 1024px) {
  .galeria__content {
    width: 80%;
    padding: 1.5rem 2rem;
  }
  .galeria__content h1 {
    font-size: 3rem;
  }
  .galeria__content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .galeria__content {
    width: 90%;
    padding: 1rem 1.5rem;
  }
  .galeria__content h1 {
    font-size: 2rem;
  }
  .galeria__content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.galeria__background-restaurante {
  background-image: url("../assets/imagens/pesqueiro_comboassado.jpg");
}

.galeria__background-infraestrutura {
  background-image: url("../assets/imagens/pesqueiro_lago2.jpg");
}

.galeria__background-lago {
  background-image: url("../assets/imagens/pesqueiro_3.jpg");
}

.regras {
  width: 100%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 5rem 0;
  padding: 25px;
  text-align: center;
}
.regras h1 {
  font-size: 4rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  margin-bottom: 1rem;
}
.regras h4 {
  font-size: 2.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  margin-bottom: 2rem;
}
.regras p {
  font-size: 2.5rem;
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
@media (max-width: 1024px) {
  .regras h1 {
    font-size: 3rem;
  }
  .regras h4 {
    font-size: 1.8rem;
  }
  .regras p {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .regras h1 {
    font-size: 2.2rem;
  }
  .regras h4 {
    font-size: 1.4rem;
  }
  .regras p {
    font-size: 1.2rem;
  }
}

.carousel-div {
  height: 100vh;
}
.carousel-div__inner {
  height: 100%;
}
.carousel-div__inner__item {
  position: relative;
  height: 100vh;
}
.carousel-div__inner__item__img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(30%);
  display: block;
}
.carousel-div__inner__item__caption {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.carousel-div__inner__item__caption h1 {
  font-size: 5.5rem;
  font-family: "Playfair Display SC", serif;
  font-weight: bold;
  margin-top: 5rem;
}
.carousel-div__inner__item__caption h6 {
  font-size: 1.6rem;
  font-family: "Playfair Display SC", serif;
  letter-spacing: 2px;
  margin: 0.5rem 0 4rem 0;
}
.carousel-div__inner__item__caption .btn {
  font-size: 2rem;
  font-family: "Playfair Display SC", serif;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
}
.carousel-div__inner__item__caption .btn-laranja {
  background-color: #E84C3D;
}
.carousel-div__inner__item__caption .btn-azul {
  background-color: #3D82C5;
}
.carousel-div__inner__item__caption .btn-verde {
  background-color: #2E8B57;
}

/* ===== Responsividade ===== */
@media (max-width: 1024px) {
  .carousel-div {
    height: 100vh;
  }
  .carousel-div__inner__item {
    height: 100vh;
  }
  .carousel-div__inner__item__img {
    height: 100vh;
  }
  .carousel-div__inner__item__caption h1 {
    font-size: 4.5rem;
  }
  .carousel-div__inner__item__caption .btn {
    font-size: 3rem;
    padding: 0.4rem 1rem;
  }
}
@media (max-width: 768px) {
  .carousel-div {
    height: 100vh;
  }
  .carousel-div__inner__item {
    height: 100vh;
  }
  .carousel-div__inner__item__img {
    height: 100vh;
  }
  .carousel-div__inner__item__caption h6 {
    font-size: 1rem;
  }
  .carousel-div__inner__item__caption h1 {
    font-size: 2.6rem;
  }
  .carousel-div__inner__item__caption .btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.8rem;
  }
}
.content .carousel-restaurante {
  --gap: 2rem;
  --ctrl-offset: clamp(0.5rem, 3vw, 2.5rem);
  text-align: center;
  padding: 2rem;
}
.content .carousel-restaurante__title {
  margin-bottom: 1rem;
  font-size: 3.4rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
}
.content .carousel-restaurante__wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.content .carousel-restaurante__viewport {
  overflow: hidden;
  border-radius: 12px;
}
.content .carousel-restaurante__track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.45s ease;
  will-change: transform;
  padding: 0.25rem 0;
}
.content .carousel-restaurante__item {
  flex: 0 0 calc((100% - var(--gap) * 2) / 3);
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}
.content .carousel-restaurante__item img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.content .carousel-restaurante__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}
.content .carousel-restaurante__control:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(255, 255, 255, 0.9);
}
.content .carousel-restaurante__control:active {
  transform: translateY(-50%) scale(0.95);
}
.content .carousel-restaurante__control--prev {
  left: calc(var(--ctrl-offset) * -2);
}
.content .carousel-restaurante__control--next {
  right: calc(var(--ctrl-offset) * -2);
}
.content .carousel-restaurante {
  /* ===== Responsivo ===== */
}
@media (max-width: 1024px) {
  .content .carousel-restaurante__item {
    flex-basis: calc((100% - var(--gap)) / 2);
  }
  .content .carousel-restaurante__control--prev {
    left: calc(var(--ctrl-offset) * -1);
  }
  .content .carousel-restaurante__control--next {
    right: calc(var(--ctrl-offset) * -1);
  }
}
@media (max-width: 768px) {
  .content .carousel-restaurante {
    --ctrl-offset: 0.5rem;
  }
  .content .carousel-restaurante__item {
    flex-basis: 100%;
  }
  .content .carousel-restaurante__control {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .content .carousel-restaurante__control--prev {
    left: 0.25rem;
  }
  .content .carousel-restaurante__control--next {
    right: 0.25rem;
  }
}

.content .carousel-infraestrutura {
  --gap: 2rem;
  --ctrl-offset: 0.5rem;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.content .carousel-infraestrutura__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: "Playfair Display SC", serif;
}
.content .carousel-infraestrutura__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.content .carousel-infraestrutura__viewport {
  overflow: hidden;
  width: 100%;
}
.content .carousel-infraestrutura__track {
  display: flex;
  gap: var(--gap);
  transition: transform 0.45s ease;
  will-change: transform;
  padding: 0.25rem 0;
}
.content .carousel-infraestrutura {
  /* 3 itens por vez no desktop */
}
.content .carousel-infraestrutura__item {
  flex: 0 0 calc((100% - var(--gap) * 2) / 3);
  box-sizing: border-box;
  padding: 1rem;
  text-align: center;
}
.content .carousel-infraestrutura__item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  display: block;
}
.content .carousel-infraestrutura__item > .carousel-infraestrutura__stars {
  color: gold;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.content .carousel-infraestrutura__item h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display SC", serif;
}
.content .carousel-infraestrutura__item p {
  font-size: 0.95rem;
  color: #333;
  margin: 0 auto;
  max-width: 260px;
  line-height: 1.4;
  font-family: "Open Sans", sans-serif;
}
.content .carousel-infraestrutura__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  font-size: 2rem;
  line-height: 53px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.content .carousel-infraestrutura__control:hover {
  transform: translateY(-50%) scale(1.05);
}
.content .carousel-infraestrutura__control:active {
  transform: translateY(-50%) scale(0.95);
}
.content .carousel-infraestrutura__control--prev {
  left: calc(var(--ctrl-offset) * -1);
}
.content .carousel-infraestrutura__control--next {
  right: calc(var(--ctrl-offset) * -1);
}
.content .carousel-infraestrutura {
  /* ===== Responsivo ===== */
}
@media (max-width: 1024px) {
  .content .carousel-infraestrutura__item {
    flex: 0 0 calc((100% - var(--gap)) / 2);
  }
}
@media (max-width: 768px) {
  .content .carousel-infraestrutura__item {
    flex: 0 0 100%;
  }
  .content .carousel-infraestrutura__control {
    left: auto;
  }
}

.mapa {
  width: 100%;
  height: max-content;
  padding: 3rem 2rem;
  background-color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mapa h1 {
  font-size: 4rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  margin-bottom: 1.5rem;
  text-align: center;
}
.mapa iframe {
  width: 100%;
  height: 483px;
  border: none;
  border-radius: 8px;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .mapa h1 {
    font-size: 2.5rem;
  }
  .mapa iframe {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .mapa {
    padding: 2rem 1rem;
  }
  .mapa h1 {
    font-size: 2rem;
  }
  .mapa iframe {
    height: 250px;
  }
}
.content__header__tabela {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.content__header__tabela__infos--1, .content__header__tabela__infos--2 {
  height: auto;
  min-height: 600px;
  width: 100%;
  max-width: 550px;
  padding: 2rem 1.5rem;
  margin-bottom: 50px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}
.content__header__tabela__infos--1 h4, .content__header__tabela__infos--2 h4 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display SC", serif;
}
.content__header__tabela__infos--1 hr, .content__header__tabela__infos--2 hr {
  width: 80%;
  border: 1px solid currentColor;
  margin-bottom: 1rem;
}
.content__header__tabela__infos--1 div, .content__header__tabela__infos--2 div {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.25rem;
}
.content__header__tabela__infos--1 div p:first-child, .content__header__tabela__infos--2 div p:first-child {
  font-size: 1.25rem;
  font-weight: bold;
}
.content__header__tabela__infos--1 div p:last-child, .content__header__tabela__infos--2 div p:last-child {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
}
.content__header__tabela__infos--1 ul, .content__header__tabela__infos--2 ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}
.content__header__tabela__infos--1 ul li, .content__header__tabela__infos--2 ul li {
  font-size: 1rem;
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-family: "Open Sans", sans-serif;
}
.content__header__tabela__infos--1 ul li::before, .content__header__tabela__infos--2 ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
}
.content__header__tabela__infos--1 a, .content__header__tabela__infos--2 a {
  display: inline-block;
  width: 70%;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Playfair Display SC", serif;
}
.content__header__tabela__infos--1 a:hover, .content__header__tabela__infos--2 a:hover {
  transform: scale(1.05);
}
.content__header__tabela__infos--1 {
  background-color: #000;
  color: #fff;
}
.content__header__tabela__infos--1 a {
  background-color: #eee;
  color: #000;
}
.content__header__tabela__infos--2 {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}
.content__header__tabela__infos--2 a {
  background-color: #000;
  color: #fff;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
  .content__header__tabela {
    flex-direction: column;
    align-items: center;
  }
  .content__header__tabela__infos--1,
  .content__header__tabela__infos--2 {
    width: 90%;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .content__header__tabela__infos--1,
  .content__header__tabela__infos--2 {
    padding: 1.5rem 1rem;
  }
  .content__header__tabela__infos--1 h4,
  .content__header__tabela__infos--2 h4 {
    font-size: 1.5rem;
  }
  .content__header__tabela__infos--1 div p:last-child,
  .content__header__tabela__infos--2 div p:last-child {
    font-size: 2.5rem;
  }
  .content__header__tabela__infos--1 ul li,
  .content__header__tabela__infos--2 ul li {
    font-size: 0.9rem;
  }
  .content__header__tabela__infos--1 a,
  .content__header__tabela__infos--2 a {
    width: 100%;
    font-size: 1rem;
  }
}
.cardapio {
  width: 100%;
}
.cardapio__title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 7rem 0;
}
.cardapio__title h2 {
  font-family: "Playfair Display SC", serif;
  font-size: 5rem;
  font-weight: lighter;
  text-align: center;
}
.cardapio__title h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background: #000;
  margin: 0.5rem auto;
}
.cardapio__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}
.cardapio__img {
  margin: 2rem 5rem;
  width: max-content;
  border: 3px solid #000;
  border-radius: 5px;
}
.cardapio__img a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cardapio__img a h3 {
  color: rgb(207.5, 207.5, 207.5);
  position: absolute;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}
.cardapio__img a img {
  width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  filter: blur(4px);
  transition: all 0.3s ease-in-out;
}
.cardapio__img a:hover h3 {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.cardapio__img a:hover img {
  filter: blur(8px);
}
.cardapio__info {
  width: 60vw;
  color: #fff;
  border-radius: 100px 0 0 100px;
  padding: 3rem;
}
.cardapio__info h3 {
  margin: 0;
  font-size: 3.75rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
}
.cardapio__info p {
  margin: 0.5rem 0 0;
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
}
.cardapio__info--red {
  background: #E84C3D;
}
.cardapio__info--blue {
  background: #3D82C5;
}
.cardapio__info--green {
  background: #2E8B57;
}
.cardapio {
  /* ====== Responsivo ====== */
}
@media (max-width: 1024px) {
  .cardapio {
    padding: 20px 0px 20px 20px;
  }
  .cardapio__img {
    margin: 1rem auto;
    width: 80% !important;
  }
  .cardapio__img img {
    width: 100% !important;
    height: auto;
  }
  .cardapio__info {
    padding: 1rem 1.5rem;
    border-radius: 100px 0 0 100px;
  }
  .cardapio__info h3 {
    font-size: 1.8rem;
  }
  .cardapio__info p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .cardapio {
    padding: 0px;
  }
  .cardapio__row {
    flex-direction: column;
    text-align: center;
  }
  .cardapio__img {
    margin: 1rem 0;
  }
  .cardapio__info {
    width: 100%;
    border-radius: 0px;
    padding: 1rem;
  }
  .cardapio__info h3 {
    font-size: 1.2rem;
  }
  .cardapio__info p {
    font-size: 0.9rem;
  }
}

.galeria__page {
  width: 100%;
  height: max-content;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.galeria__page__title h1 {
  font-size: 4rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
  margin: 25px;
  text-align: center;
}
.galeria__page__content--one, .galeria__page__content--two {
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.galeria__page__content--one img, .galeria__page__content--two img {
  width: 400px;
  height: 830px;
  object-fit: cover;
  margin: 15px;
  border-radius: 8px;
  display: block;
}
.galeria__page__content--one div, .galeria__page__content--two div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.galeria__page__content--one div img, .galeria__page__content--two div img {
  width: 800px;
  height: 400px;
  object-fit: cover;
  margin: 15px;
  border-radius: 8px;
  display: block;
}

/* ===== Responsividade ===== */
@media (max-width: 1024px) {
  .galeria__page__title h1 {
    font-size: 2.5rem;
  }
  .galeria__page__content--one img, .galeria__page__content--two img {
    width: 250px;
    height: 530px;
  }
  .galeria__page__content--one div img, .galeria__page__content--two div img {
    width: 500px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .galeria__page {
    padding: 15px;
  }
  .galeria__page__title h1 {
    font-size: 2rem;
    margin: 15px 0;
  }
  .galeria__page__content--one, .galeria__page__content--two {
    flex-direction: column;
  }
  .galeria__page__content--one img, .galeria__page__content--two img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
  .galeria__page__content--one div img, .galeria__page__content--two div img {
    max-width: 100%;
    max-width: 280px;
    height: auto;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
}

.content {
  width: 100%;
  background-color: #fff;
  padding: 3rem 0.5rem;
}
.content__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.content__header h1 {
  font-size: 4rem;
  font-family: "Playfair Display SC", serif;
  font-weight: lighter;
}
.content__header h4 {
  font-size: 2.25rem;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 2.5rem;
  font-weight: lighter;
}
.content__header p {
  font-size: 1.75rem;
  font-family: "Open Sans", sans-serif;
  color: #666666;
  margin-bottom: 5.5rem;
  max-width: 900px;
}
@media (max-width: 1024px) {
  .content__header h1 {
    font-size: 3rem;
  }
  .content__header h4 {
    font-size: 1.75rem;
  }
  .content__header p {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .content__header h1 {
    font-size: 2rem;
  }
  .content__header h4 {
    font-size: 1.4rem;
  }
  .content__header p {
    font-size: 1rem;
  }
}

.header {
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0.5rem;
  z-index: 999;
}
.header__social {
  width: 30%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}
.header__social a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.header__social a i {
  font-size: 2rem;
}
.header__social a:hover {
  color: hsl(0, 0%, 110%);
}
.header__logo img {
  width: 4.375rem;
  height: 4.375rem;
}
.header__menu {
  width: 30%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__menu a {
  font-size: 1.625rem;
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.header__menu a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.header__menu a:hover::after {
  transform: scaleX(1);
}
.header__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.header__mobile {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
.header__mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.header__mobile ul a {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  color: #000;
  text-decoration: none;
  margin: 0 2rem;
}
.header__mobile.is-active {
  display: block;
}
.header__mobile .none {
  display: none;
}

.blur {
  backdrop-filter: blur(50px);
}

@media (max-width: 1024px) {
  .header {
    width: 100vw;
    justify-content: space-around;
  }
  .header__social, .header__menu {
    display: none;
  }
  .header__toggle {
    display: block;
  }
}
.footer {
  width: 100%;
  height: max-content;
  padding: 2.5rem;
}
.footer__content {
  width: 100%;
  height: max-content;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.footer__content div h4 {
  font-size: 1.375rem;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0.9375rem;
}
.footer__content div p {
  font-size: 1.375rem;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0.625rem;
}
.footer__content div iframe {
  width: 18.75rem;
  height: 11.25rem;
  border-radius: 0.3125rem;
}
.footer__content div div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer__content div div a {
  font-size: 1.875rem;
  color: #000;
  transition: color 0.3s ease;
}
.footer__content div div a:hover {
  color: hsl(0, 0%, -15%);
}

@media (max-width: 1024px) {
  .footer {
    width: 100vw;
  }
  .footer__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__content div {
    width: 100%;
    text-align: center;
  }
  .footer__content div h4,
  .footer__content div p,
  .footer__content div iframe,
  .footer__content div div {
    margin-bottom: 2rem;
  }
}
.whatsapp-icon {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  font-size: 5rem;
  z-index: 100;
  cursor: pointer;
}
.whatsapp-icon i {
  color: #2E8B57;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .whatsapp-icon {
    right: 6rem;
    font-size: 4rem;
  }
}

.whatsapp-icon-show {
  display: block;
}
/*# sourceMappingURL=main.css.map */
