@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&display=swap");
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

*,
*::before,
*::after {
  outline: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html.contrast {
  filter: grayscale(100%);
}

#wpadminbar {
  position: fixed !important;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body,
input,
textarea,
button {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 130%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilda Display", serif;
  color: #000;
  margin-top: 0;
  margin-bottom: 1rem;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #61a6ab;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
}
h1 strong {
  color: #61a6ab;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}
h2 strong {
  color: #61a6ab;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 23px;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}

a {
  text-decoration: none;
  transition: 0.3s all;
  color: rgba(0, 0, 0, 0.85);
}
a:hover {
  opacity: 0.7;
}

.btn {
  border-radius: 8px;
  background: #61a6ab;
  padding: 8px 16px;
  color: #61a6ab;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px); /* leve elevação */
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
}

.overflow {
  width: 100%;
  overflow: auto;
}

*::-webkit-scrollbar {
  width: 9px !important;
  height: 9px !important;
}

*::-moz-scrollbar {
  width: 9px !important;
  height: 9px !important;
}

*::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.15) !important;
}

*::-moz-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.15) !important;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(97, 166, 171, 0.75) !important;
}

*::-moz-scrollbar-thumb:hover {
  background: rgba(97, 166, 171, 0.75) !important;
}

*::-webkit-scrollbar-thumb:active {
  background: #61a6ab !important;
}

*::-moz-scrollbar-thumb:active {
  background: #61a6ab !important;
}

*::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #fffce4 !important;
}

*::-moz-scrollbar-thumb {
  border-radius: 8px;
  background: #fffce4 !important;
}

.page-template-home .banner h1 {
  max-width: 100%;
}
.page-template-home .banner .txt {
  max-width: 100%;
}

.home__destaques {
  background: #61a6ab;
  padding: 73px 0 100px;
}
.home__destaques .title {
  text-align: center;
}
.home__destaques .title h2 {
  max-width: 512px;
  margin: 0 auto;
  color: white;
}
.home__destaques__boxes {
  display: flex;
  align-items: stretch;
  gap: 42px;
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .home__destaques__boxes {
    flex-direction: column;
  }
}
.home__destaques__boxes .imgDestaque {
  background-repeat: no-repeat;
  background-size: cover;
  width: 604px;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .home__destaques__boxes .imgDestaque {
    width: 100%;
    height: 280px;
  }
}
.home__destaques__boxes .boxRight .imgRight {
  background-repeat: no-repeat;
  background-size: cover;
  width: 604px;
  height: 278px;
  border-radius: 8px;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .home__destaques__boxes .boxRight .imgRight {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .home__destaques__boxes .boxRight__itens {
    max-width: 100%;
  }
}
.home__destaques__boxes .boxRight__itens .item {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}
.home__destaques__boxes .boxRight__itens .item:last-child {
  margin: 0;
}
.home__destaques__boxes .boxRight__itens .item h4 {
  color: white;
  margin: 0;
}
.home__destaques__boxes .boxRight__itens .item p {
  color: white;
  margin: 0;
}
.home__destaques__last {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  margin-top: 32px;
}
.home__eventos {
  padding: 73px 0;
  background: #4d5263;
}
.home__eventos .title {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.home__eventos .title * {
  color: white;
}
.home__eventos__boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 44px;
  padding-top: 32px;
}
.home__eventos__boxes .boxEvento {
  border-radius: 8px;
  border: 1px solid #61a6ab;
  padding: 12px;
}
.home__eventos__boxes .boxEvento .imgEvento {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 370px;
}
.home__eventos__boxes .boxEvento__txt {
  padding-top: 24px;
}
.home__eventos__boxes .boxEvento__txt h4 {
  color: white;
  margin: 0;
}
.home__eventos__boxes .boxEvento__txt p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}
.home__eventos__boxes .boxEvento__txt .btnEvento {
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  color: white;
  width: 160px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 40px;
  border: 1px solid #61a6ab;
}
.home__eventos__boxes .boxEvento__txt .btnEvento:hover {
  background: #61a6ab;
  color: white;
  opacity: 1;
}
.home__instagram {
  background: white;
  padding: 48px 0;
}
.home__instagram .title {
  text-align: center;
  max-width: 615px;
  margin: 0 auto;
}
.home__instagram .title .txt * {
  color: #000000;
}
.home__instagram .title .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.home__instagram .title .btnInstagram,
.home__instagram .title .btnfacebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: white;
  border-radius: 8px;
  background: #61a6ab;
  width: 290px;
  height: 48px;
  text-decoration: none;
  margin: 25px auto 0 auto;
  padding: 0 16px;
}
.home__instagram .title .btnfacebook svg {
  width: 24px;
}

.quemSomos {
  background: #61a6ab;
}
.quemSomos__intro {
  border-bottom: 15px solid #f1ddb9;
  padding-top: 70px;
  padding-bottom: 67px;
}
.quemSomos__boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.quemSomos__boxes .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.quemSomos__boxes .box h4 {
  margin: 0;
  font-size: 22px;
  color: white;
}
.quemSomos__boxes .box p {
  margin: 0;
  color: white;
  font-weight: 300;
}
.quemSomos__valores {
  padding: 80px 0 170px;
  background: white;
  border-bottom: 15px solid #4d5264;
}
@media (max-width: 1199px) {
  .quemSomos__valores {
    padding: 80px 0;
  }
}
.quemSomos__valores__title {
  max-width: 375px;
  margin: 0 auto;
  text-align: center;
}
.quemSomos__valores__boxes {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
}
@media (max-width: 1199px) {
  .quemSomos__valores__boxes {
    flex-direction: column;
  }
}
.quemSomos__valores__boxes .boxLeft .img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 450px;
  height: 400px;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 1199px) {
  .quemSomos__valores__boxes .boxLeft .img {
    width: 100%;
  }
}
.quemSomos__valores__boxes .boxLeft .img .txt {
  position: absolute;
  bottom: 0;
  border-radius: 8px;
  background: #61a6ab;
  color: #fff;
  width: 325px;
  padding: 48px 32px;
  bottom: -70px;
  right: -50px;
}
@media (max-width: 1199px) {
  .quemSomos__valores__boxes .boxLeft .img .txt {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.quemSomos__valores__boxes .boxLeft .img .txt h4 {
  color: white;
}
.quemSomos__valores__boxes .boxLeft .img .txt p {
  color: white;
}
.quemSomos__valores__boxes .boxRight {
  max-width: 655px;
}
@media (max-width: 1199px) {
  .quemSomos__valores__boxes .boxRight {
    max-width: 100%;
    padding-top: 120px;
  }
}
.quemSomos__valores__boxes .boxRight .boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 38px;
  margin-top: 42px;
}
@media (max-width: 1199px) {
  .quemSomos__valores__boxes .boxRight .boxes {
    grid-template-columns: 1fr;
  }
}
.quemSomos__valores__boxes .boxRight .boxes .box {
  border-radius: 8px;
  background: #4d5263;
  padding: 16px 32px;
  text-align: center;
}
.quemSomos__valores__boxes .boxRight .boxes .box h4 {
  color: white;
  margin: 0;
}
.quemSomos__valores__boxes .boxRight .boxes .box p {
  color: white;
  margin: 0;
}
.quemSomos__historia {
  padding: 70px 0;
  background: white;
  border-bottom: 15px solid #4d5264;
}
.quemSomos__historia__title {
  max-width: 415px;
  margin: 0 auto;
  text-align: center;
}
.quemSomos__historia__boxes {
  display: flex;
  align-items: stretch;
  gap: 38px;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .quemSomos__historia__boxes {
    flex-direction: column;
  }
}
.quemSomos__historia__boxes .historiaLista {
  max-width: 386px;
}
.quemSomos__historia__boxes .historiaLista .item {
  margin-bottom: 40px;
}
.quemSomos__historia__boxes .historiaLista .item h4,
.quemSomos__historia__boxes .historiaLista .item p {
  margin: 0;
}
.quemSomos__historia__boxes .historiaLista .item h4 {
  color: #000;
}
.quemSomos__historia__boxes .historiaLista .item p {
  color: rgba(0, 0, 0, 0.7);
}
.quemSomos__historia__boxes .imgHistoria {
  background-repeat: no-repeat;
  background-size: cover;
  width: 770px;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .quemSomos__historia__boxes .imgHistoria {
    height: 300px;
    width: 100%;
  }
}
.quemSomos__historia__imgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.quemSomos__historia__imgs .img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 282px;
  border-radius: 8px;
}

.contato {
  padding: 40px 0 70px;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 70%;
  position: relative;
}
.contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.contato::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: white;
  z-index: 1;
}
.contato .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.contato__intro {
  text-align: center;
  max-width: 510px;
  margin: 0 auto;
}
.contato__intro * {
  color: white;
}
.contato__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #d3e0e5;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .contato__inner {
    grid-template-columns: 1fr;
  }
}
.contato__form {
  padding: 32px;
  border-right: 1px solid #c9e0e5;
}
@media (max-width: 900px) {
  .contato__form {
    border-right: none;
    border-bottom: 1px solid #c9e0e5;
  }
}
.contato__form h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #333;
}
.contato__form label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #444;
  display: block;
  margin-bottom: 6px;
}
.contato__form input,
.contato__form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.95rem;
  transition: 0.3s;
  background: #fff;
}
.contato__form input:focus,
.contato__form textarea:focus {
  outline: none;
  border-color: #f3b974;
  box-shadow: 0 0 0 2px rgba(243, 185, 116, 0.3);
}
.contato__form textarea {
  min-height: 120px;
  resize: vertical;
}
.contato__form .form-row {
  margin-bottom: 16px;
}
.contato__form .form-row.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .contato__form .form-row.two-cols {
    grid-template-columns: 1fr;
  }
}
.contato__form .form-row .wpcf7-submit {
  border-radius: 8px;
  background: #61a6ab;
  width: fit-content;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M3 20V4L22 12L3 20ZM5 17L16.85 12L5 7V10.5L11 12L5 13.5V17ZM5 17V12V7V10.5V13.5V17Z' fill='%23F2DDB9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 10px;
  padding-left: 40px;
}
.contato__form input[type=submit] {
  background: #f3b974;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  transition: 0.3s;
}
.contato__form input[type=submit]:hover {
  background: #e5a95e;
}
.contato__info {
  padding: 32px;
}
.contato__info .contato__map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.contato__info .contato__map iframe {
  width: 100%;
  height: 343px;
  border: none;
}
.contato__info .contato__dados {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contato__info .contato__dados .info-item {
  border-radius: 8px;
  border: 1px solid #4d5264;
  background: #61a6ab;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(50% - 8px);
}
.contato__info .contato__dados .info-item.horario {
  width: 100%;
}
.contato__info .contato__dados .info-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.contato__info .contato__dados .info-item.horario {
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
}

.servicos {
  padding: 80px 0 0;
}
.servicos__boxes .box {
  padding-bottom: 120px;
}
.servicos__boxes .box h2 {
  position: relative;
  width: fit-content;
  margin: 0;
}
.servicos__boxes .box h2::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 6px;
  background: #00a0e3;
  left: 100%;
  bottom: 0;
}
@media (max-width: 1199px) {
  .servicos__boxes .box h2::before {
    width: 100%;
    left: 0;
  }
}
.servicos__boxes .box__content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 48px;
}
@media (max-width: 1199px) {
  .servicos__boxes .box__content {
    flex-direction: column-reverse;
  }
}
.servicos__boxes .box__content .imgBox {
  width: 620px;
  height: 520px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .servicos__boxes .box__content .imgBox {
    width: 100%;
    height: 320px;
  }
}
.servicos__boxes .box__content .txt p {
  margin-bottom: 24px;
}
.servicos__boxes .box__content .txt ul {
  list-style: disc;
  padding-left: 24px;
}
.servicos__boxes .box__content .txt ul li {
  font-weight: 600;
  list-style: disc;
  padding-bottom: 16px;
}
.servicos__boxes .box__content .txt .btnBox {
  border-radius: 28px;
  background: #00a0e3;
  padding: 16px;
  color: white;
  margin-top: 24px;
  display: block;
  width: fit-content;
}

.menu__sabor {
  background: #61a6ab;
  padding: 48px 0 85px;
}
.menu__sabor__title {
  text-align: center;
}
.menu__sabor__title .txt {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.menu__sabor__title .txt * {
  color: white;
}
.menu__sabor__boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 62px 48px;
  margin-top: 48px;
}
.menu__sabor__boxes .box {
  border-radius: 8px;
  border: 1px solid #61a6ab;
  padding: 12px 12px 24px;
  width: 370px;
  height: 387px;
  cursor: pointer;
}
.menu__sabor__boxes .box .img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  border-radius: 16px 16px 0 0;
}
.menu__sabor__boxes .box h4 {
  color: white;
  text-align: center;
  margin: 0;
  background: #4d5263;
  padding: 8px;
  border-radius: 0 0 16px 16px;
}
.menu__sabor__boxes .box .txt {
  display: none;
}
.menu__produtos {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  position: relative;
}
.menu__produtos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.menu__produtos > .container {
  position: relative;
}
.menu__produtos * {
  color: white;
}
.menu__produtos__title {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.menu__produtos__imgs {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 1199px) {
  .menu__produtos__imgs {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.menu__produtos__imgs .img {
  background-repeat: no-repeat;
  background-size: cover;
  width: 454px;
  height: 454px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .menu__produtos__imgs .img {
    width: 100%;
  }
}
.menu__produtos__imgs .imgQrcode {
  background: #000;
  padding: 16px;
  border-radius: 20px;
}
.menu__galeria {
  padding: 48px 0 90px;
  background: #4d5263;
}
.menu__galeria .txt {
  text-align: center;
  margin: 0 auto 48px;
}
.menu__galeria .txt * {
  color: white;
}
.menu__galeria .boxesGaleria .slick-prev:before,
.menu__galeria .boxesGaleria .slick-next:before {
  color: white;
  font-size: 32px;
}
.menu__galeria .boxesGaleria .boxGaleria {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 302px;
  height: 400px;
  border-radius: 22px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  margin: 0 16px;
  position: relative;
}
.menu__galeria .boxesGaleria .boxGaleria h4 {
  color: white;
  position: relative;
  z-index: 1;
}

.eventos .s1 {
  background: #4d5263;
  padding: 48px 0;
}
.eventos .s1__txt {
  text-align: center;
  margin-bottom: 48px;
}
.eventos .s1__txt * {
  color: white;
}
@media (max-width: 767px) {
  .eventos .s1__eventos .slick-prev {
    left: -8px;
  }
  .eventos .s1__eventos .slick-next {
    right: -8px;
  }
}
.eventos .s1 .boxEvento {
  border-radius: 8px;
  border: 1px solid #61a6ab;
  padding: 12px;
  margin: 0 16px;
}
@media (min-width: 1200px) {
  .eventos .s1 .boxEvento {
    width: 370px !important;
  }
}
.eventos .s1 .boxEvento .imgEvento {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 370px;
}
.eventos .s1 .boxEvento__txt {
  padding-top: 24px;
}
.eventos .s1 .boxEvento__txt h4 {
  color: white;
  margin: 0;
}
.eventos .s1 .boxEvento__txt p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}
.eventos .s1 .boxEvento__txt .btnEvento {
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  background: transparent;
  color: white;
  width: 160px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 40px;
  border: 1px solid #61a6ab;
}
.eventos .s1 .boxEvento__txt .btnEvento:hover {
  background: #61a6ab;
  color: white;
  opacity: 1;
}
.eventos .s2 {
  background: #62a6ab;
  padding: 70px 0;
  border-bottom: 15px solid #4d5264;
}
.eventos .s2__boxes {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 1199px) {
  .eventos .s2__boxes {
    flex-direction: column-reverse;
  }
}
.eventos .s2__boxes .imgBox {
  background-repeat: no-repeat;
  background-size: cover;
  width: 410px;
  height: 508px;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .eventos .s2__boxes .imgBox {
    width: 100%;
    height: 300px;
  }
}
.eventos .s2__boxes__txt {
  max-width: 435px;
}
.eventos .s2__boxes__txt .txt h2 {
  color: white;
}
.eventos .s2__boxes__txt .txt p {
  color: rgba(255, 255, 255, 0.85);
}
.eventos .s2__boxes__txt .btnInstagram {
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 8px;
  background: #f1ddb9;
  padding: 16px 48px;
  color: #62a6ab;
  font-weight: 700;
  margin: 48px 0;
  width: fit-content;
}

.bloco-cardapio {
  padding: 60px 0;
}
.bloco-cardapio .txt {
  text-align: center;
  margin: 32px auto;
}
.bloco-cardapio .txt h2 {
  color: #61a6ab;
}
.bloco-cardapio .cardapio__bloco {
  background: #5ba4a4;
  border-radius: 8px;
  padding: 25px 30px;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
}
.bloco-cardapio .cardapio__bloco__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.bloco-cardapio .cardapio__bloco__header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}
.bloco-cardapio .cardapio__bloco .cardapio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 20px 40px;
}
.bloco-cardapio .cardapio__bloco .cardapio__item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  gap: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.bloco-cardapio .cardapio__bloco .cardapio__item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}
.bloco-cardapio .cardapio__bloco .cardapio__item.is-soldout {
  opacity: 0.6;
}
.bloco-cardapio .cardapio__bloco .cardapio__item.is-soldout .cardapio__item__info h3,
.bloco-cardapio .cardapio__bloco .cardapio__item.is-soldout .cardapio__item__info p {
  text-decoration: line-through;
}
.bloco-cardapio .cardapio__bloco .cardapio__item__img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
}
@media (max-width: 1199px) {
  .bloco-cardapio .cardapio__bloco .cardapio__item__img {
    width: 40px;
    height: 40px;
  }
}
.bloco-cardapio .cardapio__bloco .cardapio__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bloco-cardapio .cardapio__bloco .cardapio__item__info {
  flex: 1;
}
.bloco-cardapio .cardapio__bloco .cardapio__item__info .cardapio__item__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.bloco-cardapio .cardapio__bloco .cardapio__item__info .cardapio__item__top h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
  opacity: 1;
}
@media (max-width: 1199px) {
  .bloco-cardapio .cardapio__bloco .cardapio__item__info .cardapio__item__top h3 {
    font-size: 1rem;
  }
}
.bloco-cardapio .cardapio__bloco .cardapio__item__info .cardapio__item__top .cardapio__item__price {
  font-size: 0.95rem;
  font-weight: 600;
  background: #f5e6ca;
  color: #333;
  border-radius: 6px;
  padding: 2px 8px;
}
@media (max-width: 1199px) {
  .bloco-cardapio .cardapio__bloco .cardapio__item__info .cardapio__item__top .cardapio__item__price {
    font-size: 0.8rem;
  }
}
.bloco-cardapio .cardapio__bloco .cardapio__item__info p {
  font-size: 1rem;
  opacity: 1;
  color: white;
}
@media (max-width: 1199px) {
  .bloco-cardapio .cardapio__bloco .cardapio__item__info p {
    font-size: 0.8rem;
  }
}
.bloco-cardapio .cardapio__bloco .cardapio__item__icon {
  flex-shrink: 0;
}
.bloco-cardapio .cardapio__bloco .cardapio__item__icon svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .bloco-cardapio .cardapio__bloco {
    padding: 20px;
  }
  .bloco-cardapio .cardapio__bloco__header h2 {
    font-size: 1.4rem;
  }
  .bloco-cardapio .cardapio__bloco .cardapio__grid {
    grid-template-columns: 1fr;
  }
}

.sobremesas .cardapio {
  padding: 60px 0;
}
.sobremesas .cardapio .container {
  max-width: 1200px;
}
.sobremesas .cardapio .txt {
  text-align: center;
  margin: 32px auto;
}
.sobremesas .cardapio .txt h2 {
  color: #61a6ab;
}
.sobremesas .cardapio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}
.sobremesas .cardapio__coluna {
  border: 4px solid #61a6ab;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  text-align: center;
}
.sobremesas .cardapio__titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #61a6ab;
  margin-bottom: 20px;
}
.sobremesas .cardapio__lista {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sobremesas .cardapio__lista .cardapio__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  position: relative;
}
.sobremesas .cardapio__lista .cardapio__item:last-child {
  margin-bottom: 0;
}
.sobremesas .cardapio__lista .cardapio__item .left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sobremesas .cardapio__lista .cardapio__item .cardapio__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #61a6ab;
}
.sobremesas .cardapio__lista .cardapio__item .cardapio__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobremesas .cardapio__lista .cardapio__item .cardapio__preco {
  background-color: #61a6ab;
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  font-size: 1.5rem;
  width: fit-content;
  margin: 0 auto;
}
.sobremesas .cardapio__lista .cardapio__item .cardapio__desc {
  grid-column: 1/-1;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.85);
  margin-top: 5px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sobremesas .cardapio__item {
    grid-template-columns: 50px 1fr 50px;
  }
}
.sobremesas .lista-cardapio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  background-color: #61a6ab;
  color: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  margin: 40px 0;
}
.sobremesas .lista-cardapio__coluna {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 20px;
}
.sobremesas .lista-cardapio__coluna:last-child {
  border-right: none;
}
.sobremesas .lista-cardapio__titulo {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;
  color: white;
}
.sobremesas .lista-cardapio__lista {
  list-style: disc;
  padding-left: 25px;
  list-style-type: disc;
}
.sobremesas .lista-cardapio__lista li {
  margin-bottom: 16px;
  font-size: 18px;
  color: white;
  list-style-type: disc;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sobremesas .lista-cardapio__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sobremesas .lista-cardapio__coluna {
    border: none;
    padding: 0;
  }
  .sobremesas .lista-cardapio__lista {
    list-style: none;
    padding: 0;
  }
  .sobremesas .lista-cardapio__lista li {
    margin: 16px auto;
    width: fit-content;
  }
}

.gelados .txt {
  text-align: center;
  margin: 32px auto;
}
.gelados .txt h2 {
  color: #61a6ab;
}
.gelados .gelados {
  padding: 60px 0;
}
.gelados .gelados__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .gelados .gelados__grid {
    grid-template-columns: 1fr;
  }
}
.gelados .gelados__lista {
  background-color: #61a6ab;
  color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
}
.gelados .gelados__lista ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gelados .gelados__lista ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 24px;
  color: white;
}
.gelados .gelados__lista ul li .gelados__preco {
  font-weight: 700;
  min-width: 70px;
}
.gelados .gelados__lista ul li .gelados__descricao {
  font-weight: 700;
}
.gelados .gelados__imagens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 15px;
}
.gelados .gelados__imagens .gelados__img {
  border-radius: 10px;
  overflow: hidden;
}
.gelados .gelados__imagens .gelados__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  height: 200px;
}
.gelados .gelados__imagens .gelados__img:nth-child(1) {
  grid-column: 1/-1;
  grid-row: 1;
}
.gelados .gelados__imagens .gelados__img:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.gelados .gelados__imagens .gelados__img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 767px) {
  .gelados .sabores {
    padding: 0 16px;
  }
}
.gelados .sabores .container {
  border: 4px solid #61a6ab;
  border-radius: 10px;
  padding: 30px 20px;
  background-color: #fff;
  text-align: center;
  margin: 30px auto;
}
.gelados .sabores__titulo {
  color: #61a6ab;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.gelados .sabores__lista {
  list-style: disc;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 32px;
  padding: 0 40px 0 90px;
  margin: 0 auto;
}
.gelados .sabores__lista li {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #111;
  list-style-type: disc;
  font-weight: 700;
}
@media (max-width: 991px) {
  .gelados .sabores__lista {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gelados .sabores__lista {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
.gelados .sabores-semana {
  padding: 0 0 60px;
  text-align: center;
}
.gelados .sabores-semana .container {
  max-width: 1100px;
}
.gelados .sabores-semana__titulo {
  color: #61a6ab;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.gelados .sabores-semana__imagem {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
}
.gelados .sabores-semana__imagem img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.gelados .sabores-semana__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.gelados .sabores-semana__card {
  border: 4px solid #61a6ab;
  border-radius: 10px;
  padding: 25px 15px;
  background-color: #fff;
}
.gelados .sabores-semana__card__titulo {
  color: #61a6ab;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.gelados .sabores-semana__card__descricao {
  color: #000;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 767px) {
  .gelados .sabores-semana__titulo {
    font-size: 1.5rem;
  }
}

.pratos-principais .pratos {
  padding: 60px 0;
  text-align: center;
}
.pratos-principais .pratos__titulo {
  color: #61a6ab;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.pratos-principais .pratos__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
  gap: 30px;
}
@media (max-width: 767px) {
  .pratos-principais .pratos__grid {
    grid-template-columns: 1fr;
  }
}
.pratos-principais .pratos__lista {
  background-color: #61a6ab;
  border-radius: 10px;
  padding: 30px 20px;
  color: #fff;
}
.pratos-principais .pratos__lista ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pratos-principais .pratos__lista ul li {
  display: grid;
  grid-template-columns: 70px 0.9fr 30px;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: white;
  font-size: 1rem;
  padding: 24px;
}
.pratos-principais .pratos__lista ul li.esgotado {
  opacity: 0.6;
}
.pratos-principais .pratos__lista ul li .pratos__preco {
  font-weight: 700;
  font-size: 1rem;
}
.pratos-principais .pratos__lista ul li .pratos__nome {
  font-size: 1rem;
  text-align: left;
}
@media (max-width: 767px) {
  .pratos-principais .pratos__lista ul li .pratos__nome {
    font-size: 1rem;
  }
}
.pratos-principais .pratos__lista ul li .pratos__status {
  text-align: right;
}
.pratos-principais .pratos__lista ul li .pratos__status .pratos__icone {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.pratos-principais .pratos__lista ul li .pratos__status .pratos__label-esgotado {
  font-size: 0.85rem;
  background: #fff;
  color: #c0392b;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.pratos-principais .pratos__imagens {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.pratos-principais .pratos__imagens .pratos__img {
  border-radius: 10px;
  overflow: hidden;
  height: 260px;
}
.pratos-principais .pratos__imagens .pratos__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pratos-principais .extras__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.pratos-principais .extras__box {
  border: 4px solid #61a6ab;
  border-radius: 10px;
  padding: 30px;
  background: #fff;
  text-align: center;
}
.pratos-principais .extras__titulo {
  color: #61a6ab;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.pratos-principais .extras__lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 30px;
  text-align: left;
  list-style: disc;
  margin-bottom: 25px;
  padding-left: 30px;
  color: #000;
}
.pratos-principais .extras__lista li {
  font-weight: 700;
  list-style-type: disc;
}
.pratos-principais .extras__molhos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.pratos-principais .extras__molhos .extras__molho {
  text-align: center;
  width: 130px;
}
.pratos-principais .extras__molhos .extras__molho img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 5px;
}
.pratos-principais .extras__molhos .extras__molho span {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}
.pratos-principais .extras__opcoes {
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .pratos-principais .extras__opcoes {
    flex-direction: column;
  }
}
.pratos-principais .extras__opcoes .extras__opcao {
  text-align: center;
}
.pratos-principais .extras__opcoes .extras__opcao img {
  height: auto;
  margin-bottom: 5px;
}
.pratos-principais .extras__opcoes .extras__opcao__titulo {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  font-size: 20px;
}
.pratos-principais .extras__opcoes .extras__opcao__preco {
  display: inline-block;
  background-color: #61a6ab;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.5rem;
}
.pratos-principais .menu-duplo {
  padding: 40px 0;
  /* --- BLOCO BASE --- */
  /* --- PETISCOS (AJUSTE DE LAYOUT) --- */
}
.pratos-principais .menu-duplo .menu-box {
  /* --- TÍTULO --- */
  /* --- PREÇO GERAL (CANTO SUPERIOR DIREITO) --- */
  /* --- GRID GERAL --- */
  /* --- LISTA DE ITENS --- */
  /* --- IMAGENS LATERAIS --- */
}
.pratos-principais .menu-duplo .menu-box__titulo {
  color: #61a6ab;
  background: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  border-radius: 6px;
  padding: 8px 15px;
  margin-bottom: 20px;
}
.pratos-principais .menu-duplo .menu-box__preco-geral {
  position: absolute;
  top: 20px;
  right: 30px;
  background: #ffefcf;
  color: #000;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 1rem;
}
.pratos-principais .menu-duplo .menu-box__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 768px) {
  .pratos-principais .menu-duplo .menu-box__grid {
    grid-template-columns: 1fr;
  }
}
.pratos-principais .menu-duplo .menu-box__lista ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; /* DUAS COLUNAS COMO NO PRINT */
  gap: 15px 40px;
  background: #61a6ab;
  border-radius: 10px;
  color: #fff;
  padding: 25px 30px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .pratos-principais .menu-duplo .menu-box__lista ul {
    grid-template-columns: 1fr;
  }
}
.pratos-principais .menu-duplo .menu-box__lista ul li {
  display: grid;
  grid-template-columns: 100px 1fr 35px;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 5px 10px;
  transition: all 0.2s ease;
}
.pratos-principais .menu-duplo .menu-box__lista ul li.esgotado {
  opacity: 0.6;
}
.pratos-principais .menu-duplo .menu-box__lista ul li:hover {
  background: rgba(255, 255, 255, 0.15);
}
.pratos-principais .menu-duplo .menu-box__lista ul li img {
  width: 100px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}
.pratos-principais .menu-duplo .menu-box__lista ul li .menu-box__nome {
  font-size: 1rem;
  text-align: left;
  color: white;
  font-weight: 700;
}
.pratos-principais .menu-duplo .menu-box__lista ul li .menu-box__preco {
  font-weight: 700;
  font-size: 0.95rem;
  text-align: right;
  color: #fff;
}
.pratos-principais .menu-duplo .menu-box__lista ul li .menu-box__status {
  text-align: right;
}
.pratos-principais .menu-duplo .menu-box__lista ul li .menu-box__status svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.pratos-principais .menu-duplo .menu-box__lista ul li .menu-box__status .menu-box__label-esgotado {
  display: inline-block;
  background: #fff;
  color: #c0392b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
}
.pratos-principais .menu-duplo .menu-box__imagens {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pratos-principais .menu-duplo .menu-box__imagens .menu-box__img {
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}
.pratos-principais .menu-duplo .menu-box__imagens .menu-box__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.pratos-principais .menu-duplo .menu-box:nth-child(2) .menu-box__grid {
  grid-template-columns: 1.5fr 1fr;
}
@media (max-width: 767px) {
  .pratos-principais .menu-duplo .menu-box:nth-child(2) .menu-box__grid {
    grid-template-columns: 1fr;
  }
}
.pratos-principais .menu-duplo .menu-box:nth-child(2) .menu-box__grid .menu-box__lista ul {
  grid-template-columns: 1fr; /* só uma coluna no bloco petiscos */
}
.pratos-principais .menu-duplo .menu-box:nth-child(2) .menu-box__grid .menu-box__lista ul li {
  grid-template-columns: 55px 1fr 100px !important;
  padding: 24px;
}
.pratos-principais .menu-duplo .menu-box:nth-child(2) .menu-box__preco {
  font-weight: 700;
  font-size: 1rem;
}
.pratos-principais .menu-duplo .menu-box:nth-child(2) .menu-box__nome {
  text-align: left;
}

.imgEffect {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .imgEffect {
    width: 100%;
  }
}
.imgEffect:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cardEffect {
  box-shadow: 0 4px 10px rgba(22, 17, 3, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.cardEffect:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.295);
}

.page-template-page-default .content-default {
  padding: 80px 0;
}

.btnContacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btnContacto:hover {
  background: #61a6ab;
  color: white !important;
}
.btnContacto img {
  max-width: 24px;
}

.header {
  transition: background 0.3s, position 0.3s;
  z-index: 1;
  background: #fff;
}
.header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top {
  background: #4d5264;
  padding: 12px 0;
}
.header__top__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__top__left .headerSocial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__top__left .infos {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 767px) {
  .header__top__left .infos {
    gap: 24px;
  }
}
.header__top__left .infos a {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .header__top__left .infos a {
    font-size: 12px;
    gap: 8px;
  }
  .header__top__left .infos a img {
    width: 24px;
  }
}
.header__top__left .redes {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__top__left .redes a {
  background: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 3px;
}
.header__top__left * {
  color: white;
}
.header .headerLeft {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .btnMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 8px;
  background: #61a6ab;
  height: 52px;
  color: white;
  font-weight: 500;
  padding: 8px 16px;
  font-size: 18px;
}
.header .headerSocial {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1199px) {
  .header .headerSocial .redes {
    display: none;
  }
}
.header .headerSocial .tel a {
  font-size: 18px;
}
.header .logo {
  max-width: 145px;
}
@media (max-width: 1199px) {
  .header .logo {
    max-width: 145px;
  }
}
@media (min-width: 1200px) {
  .header .openMenu {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .header nav {
    display: none;
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    background: white;
    padding: 48px 0;
    z-index: 1;
  }
  .header nav.active {
    display: block;
    right: 0;
  }
}
.header nav .closeMenu {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (min-width: 1200px) {
  .header nav .closeMenu {
    display: none !important;
  }
}
.header .primary-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1199px) {
  .header .primary-menu {
    flex-direction: column;
  }
}
.header .primary-menu li a {
  color: rgba(0, 0, 0, 0.85);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .header .primary-menu li a {
    color: rgba(0, 0, 0, 0.85);
  }
}
.header .primary-menu li a:hover {
  background: #61a6ab;
  color: white;
  opacity: 1;
}
.header .iconsHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .iconsHeader__item {
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.header .iconsHeader__item:hover {
  transform: scale(1.05);
}
.header .iconsHeader__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.boxBanner {
  position: relative;
}
.boxBanner .arrowBanner {
  position: absolute;
  left: calc(50% - 24px);
  top: 80%;
}

.banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.52);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.banner-slick .slick-dots {
  bottom: 60px;
  z-index: 1;
}
.banner-slick .slick-dots li button:before {
  font-size: 24px;
  width: 32px;
  height: 32px;
  color: white;
}
.banner > .container {
  position: relative;
}
.banner h1 {
  text-align: center;
  margin: 16px auto;
  color: white;
  max-width: 600px;
}
.banner h2,
.banner h3,
.banner h4 {
  color: white;
  font-weight: 300;
  text-align: center;
}
.banner .txt {
  text-align: center;
  margin: 0 auto;
}
.banner .txt h2 {
  font-weight: 500;
}
.banner .btnBanner {
  border-radius: 8px;
  background: #61a6ab;
  padding: 8px 24px;
  color: white;
  margin: 48px auto;
  display: block;
  width: fit-content;
}

.footer__top {
  background: #61a6ab;
}
.footer__top > .container {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
@media (max-width: 1199px) {
  .footer__top > .container {
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    gap: 48px;
  }
}
.footer__top .logoFooter {
  text-align: center;
}
@media (max-width: 1199px) {
  .footer__top .logoFooter {
    text-align: center;
  }
}
.footer__top .logoFooter .txt {
  max-width: 410px;
  padding-top: 20px;
  text-align: center;
}
.footer__top .logoFooter .txt p {
  color: #f5f5f5;
}
.footer__top .social {
  text-align: center;
}
.footer__top .social h4 {
  color: white;
}
.footer__top .social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__top .social ul li {
  background: white;
  border-radius: 8px;
}
.footer__top .social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.footer__top .social .btns {
  margin-top: 40px;
}
.footer__top .social .btns .btnFooter {
  background: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 24px;
}
.footer__top .contacto h4 {
  color: white;
}
.footer__top .contacto .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__top .contacto .info a {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
}
.footer__top .morada {
  max-width: 230px;
}
@media (max-width: 1199px) {
  .footer__top .morada {
    text-align: center;
  }
}
.footer__top .morada * {
  color: white;
}
.footer__top .morada .listaFooter li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer__top .morada .listaFooter li img {
  width: 16px;
}
.footer__top .morada iframe {
  width: 228px;
  height: 149px;
  border-radius: 8px;
}
.footer__bottom {
  text-align: center;
  background: #61a6ab;
}
.footer__bottom > .container {
  border-top: 4px solid rgba(233, 207, 207, 0.2901960784);
  padding: 24px 0;
}
@media (max-width: 1199px) {
  .footer__bottom > .container {
    padding: 24px 16px;
  }
}
.footer__bottom p {
  margin: 0;
  color: #e9cfcf;
  text-align: center;
}

.blog-single {
  padding: 80px 0;
}