:root {
  --standar-font: "Glober";
  --font-minor: 12px;
  --font-small: 14px;
  --font-medium: 18px;
  --font-large: 35px;
  --font-extra: 30px;
  --secondary-color: #007481;
  --main-color: #ce0e2d;
  --background-color: #fffcf0;
  --white: #ffffff;
  --black-w: #3f3f3f;
  --grafite: #77787b;
  --black: #000000;
}

html {
  overflow-x: hidden !important;
  width: 100vw !important;
  height: auto;
}

body {
  background-color: var(--background-color);
}

* {
  margin: 0;
  padding: 0;
}

/* style Scroll*/

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-thumb {
  background: #ce181e;
  border-radius: 0px;
}

*::-webkit-scrollbar-track-piece {
  background: #fff;
}

/*END style scroll*/

#ajaxBusy {
  background: var(--black);
}

#ajaxBusy p {
  color: var(--white);
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p,
a,
span,
li,
ul,
ol,
button,
input,
label,
strong,
i {
  font-family: var(--standar-font);
  font-size: var(--font-small);
  color: var(--grafite);
}

header p,
header a,
header span,
header li,
header ul,
header ol,
header button,
header input,
header label,
header strong,
header i,
footer p,
footer a,
footer span,
footer li,
footer ul,
footer ol,
footer button,
footer input,
footer label,
footer strong,
footer i {
  color: var(--white);
  font-weight: 300;
  letter-spacing: 1px;
  font-size: var(--font-minor);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--standar-font);
  color: var(--main-color);
}

h1 {
  font-size: var(--font-extra);
}

h2 {
  font-size: var(--font-large);
}

nav li {
  list-style: none;
}

a {
  text-decoration: none;
}

.desk {
  display: none;
}

@media (min-width: 990px) {
  .desk {
    display: initial;
  }

  .mob {
    display: none;
  }
}

/* HEADER */

header {
  display: block;
  position: sticky;
  top: 0;
  background: var(--main-color);
  padding: 10px;
  width: calc(100vw - 20px);
  z-index: 10;
}

header .content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  width: 220px;
  height: auto;
}

header .menu-header {
  padding: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .content-menu-header {
  width: 30px;
  height: 30px;
  position: relative;
}

header .menu-status,
header .menu-status::after,
header .menu-status::before {
  content: "";
  height: 4px;
  background: var(--white);
  display: block;
  position: absolute;
  transition: 0.4s ease-out;
}

header .menu-status {
  width: 20px;
  top: 50%;
  left: 50%;
  margin-right: 50%;
  transform: translate(-50%, -50%);
}

header .menu-status::after {
  width: 30px;
  top: 10px;
  left: 0;
}

header .menu-status::before {
  width: 30px;
  bottom: 10px;
  left: 0;
}

header.menu-mob-on .menu-status {
  width: 0;
}

header.menu-mob-on .menu-status::after {
  transform: rotate(-225deg);
  top: 0;
  left: -15px;
}

header.menu-mob-on .menu-status::before {
  transform: rotate(225deg);
  top: 0;
  left: -15px;
}

header .menu-site {
  display: block;
  width: 100vw;
  height: calc(100vh - 100px);
  position: absolute;
  top: 100px;
  right: 100%;
  background: var(--main-color);
  transition: 0.3s ease-out;
}

header.menu-mob-on .menu-site {
  right: 0%;
}

header nav li {
  position: relative;
  text-align: center;
  padding: 10px;
  margin: 12px auto;
  padding-top: 6px;
  border-bottom: 1px solid var(--white);
  display: block;
  width: 85%;
  max-width: 15.625rem;
  cursor: pointer;
  text-transform: uppercase;
}

header nav li:last-child {
  border-bottom: 0;
}

header li a::before {
  opacity: 0;
  content: "-";
  position: absolute;
  left: -6px;
  font-size: 18px;
  line-height: 1;
  transition: 0.3s ease-out;
}

header li a::after {
  opacity: 0;
  content: "-";
  position: absolute;
  right: -7px;
  font-size: 18px;
  line-height: 1;
  transition: 0.3s ease-out;
}

header li:hover a::before {
  opacity: 1;
}

header li:hover a::after {
  opacity: 1;
}

@media (min-width: 990px) {
  header .content-header {
    display: flex;
    justify-content: space-around;
    max-width: 90.625rem;
    margin: 0 auto;
  }

  header .menu-header {
    display: none;
  }

  header .menu-site {
    width: calc(95% - 220px);
    max-width: 1000px;
    position: relative;
    height: auto;
    background: unset;
    top: unset;
    right: unset;
    /* border-top: 1px solid var(--white); */
    /* border-bottom: 1px solid var(--white); */
    padding-top: 5px;
    padding-bottom: 2px;
  }

  header nav {
    display: flex;
    width: 100%;
  }

  header nav li {
    padding: 0;
    margin: 0 auto;
    border-bottom: none;
    width: auto;
  }
}

/* Footer */

.booking{
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.booking-box{
  background: var(--main-color);
  border-radius: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  box-shadow: 2px 3px 5px -1px rgba(0,0,0,0.28);
}

.booking-box-button{
  background-color: transparent;
  color: var(--white);
  border: none;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 1300px) {
  .booking{
    bottom: 20px;
    right: 20px;
  }

  .booking-box{
    width: 70px;
    height: 70px;
  }

  .booking-box-button{
    font-size: 16px;
  }
}

footer {
  background-image: url(pattern-footer-new.png);
  padding: 20px 40px;
  padding-bottom: 10px;
  position: relative;
}

footer h3 {
  font-size: 15px;
  border-bottom: 1px solid var(--white);
  margin-bottom: 10px;
  color: var(--white);
}

footer li {
  list-style: none;
}

footer p,
footer a,
footer strong {
  font-weight: bold;
}

footer .content-footer {
  max-width: 300px;
  margin: 0 auto;
}

footer .sec-footer {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  min-width: 284px;
}

footer .endereco p {
  margin-bottom: 10px;
}

footer .contacto {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

footer .contacto .phone-img {
  max-width: 1.375rem;
  max-height: 1.375rem;
}

footer .content-contacto {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

footer .img-contacto {
  padding: 0 10px;
}

footer .sec-footer > div {
  margin: 20px auto;
}

footer .sec-footer > div.endereco {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--white);
}

footer .redes-sociais {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

footer .redes-sociais img {
  padding: 0 5px;
}

footer .redes-sociais a {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .redes-sociais a p {
  top: 2px;
  position: relative;
}

footer .logo-foter {
  width: 80vw;
  max-width: 100%;
  border-bottom: 1px solid var(--white);
  margin-bottom: 10px !important;
  padding-bottom: 10px;
}

footer .menu-footer {
  display: flex;
  gap: 15px;
  justify-content: center;
}

footer .menu-footer ul {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

footer .menu-footer a {
  text-transform: uppercase;
}

footer .desenvolvido-por p {
  text-align: center;
  margin-bottom: 5px;
}

footer .content-desenvolvido-por {
  width: max-content;
  max-width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 5px auto;
}

footer .dereitos {
  text-align: center;
}

@media (min-width: 990px) {
  footer {
    padding: 0px;
  }

  footer p,
  footer a,
  footer strong {
    font-weight: 300;
  }

  footer .content-footer {
    display: flex;
    max-width: 880px;
    margin: 0 auto;
    justify-content: space-evenly;
  }

  footer .sec-footer {
    margin: unset;
    margin-top: 20px;
    min-width: unset;
  }

  footer .sec-footer .menu-footer {
    float: left;
  }

  footer .sec-footer .menu-footer {
    border-top: 1px solid var(--white);
    padding-top: 15px;
  }

  footer .menu-footer {
    border-top: unset !important;
    padding-top: unset !important;
  }

  footer .sec-footer:nth-child(4) {
    margin-top: 0;
  }

  footer .sec-footer:nth-child(5) {
    margin-top: 70px;
  }

  footer .sec-footer > div {
    margin: unset;
    margin-bottom: 10px;
  }

  footer .img-contacto {
    padding: 0 20px;
  }

  footer .sec-footer > div:last-child {
    margin-bottom: 20px;
    /* margin-top: 20px; */
  }

  footer .logo-foter {
    width: 270px;
    padding: 0 20px;
  }

  footer .separador {
    border-right: 1px solid var(--white);
    padding: 105px 0;
    width: 0;
    height: 0;
    margin: auto 0;
  }

  footer .content-desenvolvido-por {
    position: absolute;
    bottom: 0px;
    right: 10px;
    z-index: 1;
  }
}

/* Home */

main > section {
  margin: 20px 0;
}

main > section:first-child {
  margin-top: 0;
}

main .banner-principal img {
  margin: 0 auto;
  width: 100vw;
}

main .separador-LP {
  width: 70px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .separador-LP img {
  position: relative;
  display: block;
  background: var(--background-color);
  padding: 0px 3.125rem;
}

main .separador-LP::before {
  content: "";
  border-top: 1px solid var(--black);
  width: calc(100vw - 100px);
  top: 50%;
  left: 50%;
  margin-right: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

main .text-of-contnet {
  padding: 0 20px;
  padding-bottom: 20px;
}

.home main .text-of-contnet h1 {
  text-transform: uppercase;
  font-size: 65px;
}

main .text-of-contnet h1::before {
  content: "";
  display: block;
  height: 0;
  width: calc(50vw - 100px);
  border-top: 2px solid;
  margin-bottom: 20px;
  max-width: 100px;
}

main .text-of-contnet p::after {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  border-top: 1px solid var(--grafite);
  margin-top: 20px;
}

main .banner-of-content img {
  margin: 0 auto;
}

main .title-and-img h2 {
  margin: 0 auto;
  display: block;
  width: max-content;
  max-width: 100%;
  position: relative;
}

main .title-and-img h2::after {
  content: "";
  display: block;
  height: 0;
  width: 55%;
  border-top: 2px solid;
  margin: 5px auto;
  margin-top: 0;
}

main .title-and-img h2::after {
  content: "";
  display: block;
  height: 0;
  width: 55%;
  border-top: 2px solid;
  margin: 5px auto;
  margin-top: 0;
}

main > section {
  margin-top: 30px;
}

main .content-of-img {
  display: flex;
  margin-top: 20px;
}

main .content-of-img img {
  margin: 0 auto;
}

main .content-of-img img:first-child,
main .content-of-img img:last-child {
  display: none;
}

main .content-botao-la-pastina {
  margin: 3.125rem auto;
}

.swiper {
  width: 100%;
  height: 16.25rem;
}

.mob {
  padding: 0 1.5625rem 0 1.5625rem;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Componente_9_3' data-name='Componente 9 – 3' width='25' height='25' viewBox='0 0 25 25'%3E%3Cg id='Elipse_1' data-name='Elipse 1' fill='%23fff' stroke='%23cf0d2d' stroke-width='1'%3E%3Ccircle cx='12.5' cy='12.5' r='12.5' stroke='none'/%3E%3Ccircle cx='12.5' cy='12.5' r='12' fill='none'/%3E%3C/g%3E%3Cpath id='Caminho_1' data-name='Caminho 1' d='M3059.394,1355.767l-4.86,4.86,4.86,4.86' transform='translate(-3045.464 -1348.127)' fill='none' stroke='%23cf0d2d' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
}

.swiper-button-next {
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Componente_8_3' data-name='Componente 8 – 3' width='25' height='25' viewBox='0 0 25 25'%3E%3Cg id='Elipse_1' data-name='Elipse 1' fill='%23fff' stroke='%23cf0d2d' stroke-width='1'%3E%3Ccircle cx='12.5' cy='12.5' r='12.5' stroke='none'/%3E%3Ccircle cx='12.5' cy='12.5' r='12' fill='none'/%3E%3C/g%3E%3Cpath id='Caminho_1' data-name='Caminho 1' d='M3054.533,1355.767l4.86,4.86-4.86,4.86' transform='translate(-3043.463 -1348.127)' fill='none' stroke='%23cf0d2d' stroke-linecap='round' stroke-width='2'/%3E%3C/svg%3E");
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "" !important;
}

main .content-botao-la-pastina a {
  background: var(--main-color);
  color: var(--white);
  border: 1px solid var(--main-color);
  padding: 15px 70px;
  padding-top: 18px;
  display: block;
  width: max-content;
  margin: 20px auto;
}

main .content-botao-la-pastina p {
  text-align: center;
}

main .content-botao-la-pastina a:hover {
  background: var(--white);
  color: var(--main-color);
}

.clp .newsletter-home {
  width: 80%;
  max-width: 540px;
  margin: 3.125rem auto;
  border-top: 2px solid var(--main-color);
}

.clp main .newsletter-home .newsletter-content {
  display: block;
  position: relative;
  width: max-content;
  margin: 0 auto;
  width: 100%;
  max-width: 520px;
  cursor: pointer;
}

.clp main .newsletter-home .newsletter-content input {
  width: 100%;
  height: 10px;
  padding: 8px;
  display: block;
  margin: 0px auto;
  border-top: 1.5px solid var(--main-color);
  border-right: none;
  border-left: none;
  border-bottom: 1.5px solid var(--main-color);
  background: transparent;
  color: var(--main-color);
}

.clp main input#mce-EMAIL::-webkit-input-placeholder {
  color: var(--main-color);
}

.clp main .newsletter-home .newsletter-content input.newslatter-button,
input#mc-embedded-subscribe {
  width: unset;
  height: unset;
  padding: unset;
  margin: unset;
  border-top: unset;
  border-right: unset;
  border-left: none;
  border-bottom: unset;
  background: unset;
  color: unset;
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translate(0%, -50%);
  display: block;
  content: "\2192";
  background: var(--main-color);
  padding: 5px;
  color: var(--white);
}

input#mc-embedded-subscribe {
  background: var(--main-color);
  padding: 6px;
  color: var(--white);
}

.clp main .newsletter-home .newsletter-content input.newslatter-button {
  right: -16px;
}

.clp main .newsletter-home p {
  text-align: center;
  max-width: 400px;
  margin: 20px auto;
}

.clp main .newsletter-home h2 {
  text-align: center;
}

/* lightbox email */

.lightbox-imagem {
  display: block;
  position: relative;
  z-index: 1;
}

.newsletter-footer input,
.newsletter-content input {
  pointer-events: none;
}

.lightbox-email {
  width: 90%;
  max-width: unset;
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  max-width: 360px;
}

.lightbox-shadow {
  position: fixed;
  display: block;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  background: #00000096;
  z-index: -1;
}

#rd-column-kn7qn5tc > div {
  background: transparent !important;
}

#rd-form-kn7qn5te .bricks-form__input {
  background-color: transparent !important;
}

.lightbox-email-conteiner {
  top: 78%;
  left: 50%;
  margin-right: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 70%;
  min-width: 15.625rem;
  z-index: 2;
}

.lightbox-input > div > section > div > .bricks--component {
  width: auto !important;
  max-width: 100%;
}

#rd-column-kn7qn5tc > div {
  background-color: transparent !important;
}

#rd-section-kn7qn5t8 {
  background: transparent !important;
}

#rd-form-kn7qn5te .bricks-form__input {
  width: 100% !important;
  border-color: #a9a9a9 !important;
  border-radius: 50px !important;
  padding: 20px 10px !important;
  color: #ce181e !important;
}

#rd-form-kn7qn5te {
  max-width: unset !important;
}

#rd-button-kn7qn5th {
  background: #ce181e !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-size: 0px !important;
  padding: 10px 10px !important;
  font-weight: bold !important;
  width: 116% !important;
  position: relative !important;
  padding: 20px 10px !important;
}

#rd-button-kn7qn5th::before {
  content: "CADASTRE-SE";
  font-size: 15px;
  top: 50%;
  left: 50%;
  margin-right: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: max-content;
}

.fechar-lightbox {
  display: block;
  top: -106%;
  left: 110%;
  margin-right: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

#rd-form-kn7qn5te label.error {
  display: block;
  position: absolute;
  top: -11px;
}

@media (min-width: 990px) {
  .lightbox-email {
    max-width: 830px;
  }

  .lightbox-email-conteiner {
    top: 62%;
    left: 75%;
    width: 40%;
  }

  .fechar-lightbox {
    top: -181%;
    left: 105%;
  }

  #rd-button-kn7qn5th {
    max-width: 330px !important;
  }
}

/* END lightbox email */

/* Bottons carrousel */

.owl-next button {
  content: "";
  border-style: solid;
  border-color: white;
  border-image: initial;
  border-width: 0px 3px 3px 0px;
  /* border-bottom: 4px solid #000; */
  /* border-right: 4px solid #000000; */
  display: inline-block;
  padding: 8px;
  cursor: pointer;
  vertical-align: middle;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%) rotate(-45deg);
  position: absolute;
}

.owl-prev button {
  content: "";
  border-style: solid;
  border-color: white;
  border-image: initial;
  border-width: 0px 3px 3px 0px;
  /*border-bottom: 4px solid #fff;*/
  /* border-right: 4px solid #fff;*/
  display: inline-block;
  padding: 8px;
  cursor: pointer;
  /* vertical-align: middle; */
  background: transparent;
  top: 50%;
  left: 50%;
  /* margin-right: 50%; */
  transform: translate(-30%, -50%) rotate(135deg);
  position: absolute;
}

.owl-prev,
.owl-next {
  position: relative;
  padding: 20px;
  background: #ffffff8f;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.owl-next {
  top: 50%;
  left: 90%;
}

/* END Bottons carrousel */

main .text-and-banner.second {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 990px) {
  main .text-and-banner {
    display: flex;
  }

  main .text-and-banner.second {
    display: flex;
    flex-direction: row;
  }

  main .text-and-banner > div {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  main .text-of-contnet {
    padding: 0 3.125rem;
  }

  .home main .text-of-contnet h1 {
    font-size: 70px;
  }

  main .text-of-contnet h1::before {
    max-width: 45px;
  }

  main .text-of-contnet p {
    width: calc(50vw - 135px);
    max-width: 100%;
  }

  main .title-and-img h2 {
    margin: 3.125rem auto;
  }

  main .content-of-img img:first-child,
  main .content-of-img img:last-child {
    display: block;
    width: 25%;
  }

  main .content-of-img img {
    width: 50%;
    max-width: max-content;
    margin: 0;
  }

  main .content-of-img {
    display: flex;
    position: relative;
    justify-content: space-evenly;
    align-items: flex-end;
  }

  main .content-of-img img:first-child {
    top: 100%;
    left: 0%;
    transform: translate(0%, -100%);
    position: relative;
  }
}

@media (min-width: 1300px) {
  main .text-of-contnet {
    max-width: 60%;
  }
}

/* Emporio */

.emporio .text-of-contnet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emporio .text-of-contnet p::after{
  border: none;
  margin-top: 0px;
}

.emporio .text-of-contnet a{
  background: #ce181e !important;
  padding: 10px;
  color: var(--background-color);
  max-width: 150px;
  text-align: center;
}

.emporio .content-collage-imgs{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100vw;
  text-align: center;
  gap: 20px;
}

.emporio main .text-and-banner.second::before {
  content: '';
}

/* Carrousel tree */

.carrousel-banner-tree {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: max-content;
  display: flex;
  background: var(--main-color);
}

.content-carrousel-tree {
  position: absolute;
  width: calc(100% - 65px);
}

.botao-carrousel-tree {
  width: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carrousel-banner-tree > img {
  width: calc(100% - 65px);
}

.carrousel-banner-tree > img {
  opacity: 0;
}

.botao-carrousel-tree > span {
  height: calc(100% / 3);
  display: flex;
  align-items: center;
  font-size: 0;
  width: 100%;
  justify-content: center;
  opacity: 0.5;
  transition: 0.4s ease-out;
  cursor: pointer;
}

.botao-carrousel-tree > span > span {
  padding: 5px;
  font-size: 0;
  border: 1px solid var(--white);
  border-radius: 100%;
  transition: 0.5s ease-out;
}

.botao-carrousel-tree > span > span::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 100%;
  border: 2px solid var(--white);
  padding: 0px;
}

.imgcarrousel-tree img {
  position: absolute;
  opacity: 0;
  transition: 0.5s ease-out;
}

.active-carrouseltree {
  opacity: 1 !important;
}

/* END Carrousel tree*/

main .banner-banner-tree {
  display: flex;
  margin-top: 3.125rem;
  gap: 1.25rem;
  justify-content: center;
}

main .banner-banner-tree img {
  max-width: calc(95% / 3);
}

main .banner-one img {
  margin: 0 auto;
}

@media (min-width: 1300px) {
  .emporio main .text-and-banner {
    position: relative;
  }

  .emporio main .text-of-contnet {
    padding-left: 210px;
  }

  .emporio main .text-and-banner::before {
    content: url(Icone-emporio-clp.png);
    position: absolute;
    z-index: -1;
    bottom: -36%;
    left: -2.5%;
    transform: scale(0.8);
  }
}

/* Restaurante */

.restaurante .winebar .text-and-banner::before{
  content: url(Icone-wineber-clp.png);
  position: absolute;
  z-index: -1;
  bottom: -30%;
  right: -2.5%;
  left: auto;
  transform: scale(0.8);
}

@media (max-width: 1300px) {
  .restaurante .winebar .text-and-banner::before{
    content: '';
  }

  .restaurante .winebar .text-and-banner .text-of-contnet {
    padding: 0 20px 20px !important;
  }
}

.restaurante .winebar .text-and-banner .text-of-contnet {
  padding-left: 0;
}

.restaurante main .text-of-contnet h1 {
  color: var(--secondary-color);
}

.restaurante .text-of-contnet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.restaurante .text-of-contnet p::after{
  border: none;
  margin-top: 0px;
}

.restaurante .text-of-contnet div{
  display: flex;
  gap: 20px;
}

.restaurante .text-of-contnet a{
  background: #ce181e !important;
  padding: 10px;
  color: var(--background-color);
  width: 150px;
  text-align: center;
}

.restaurante .text-of-contnet a strong{
  color: var(--background-color);
}

.restaurante .content-collage-imgs{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100vw;
  text-align: center;
}

.restaurante .content-collage-imgs img{
  width: 18%;
  max-width: none;
}

@media (max-width: 1000px) {
  .restaurante .content-collage-imgs img{
    width: 25%;
  }
}

main .collage-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

main .collage-imgs img {
  width: calc(50% - 15px);
  max-width: max-content;
}

main .collage-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

main .collage-imgs img {
  width: calc(50% - 15px);
  max-width: max-content;
}

main .content-nums-res > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

main .content-nums-res .delivery-nums {
  margin-bottom: 40px;
}

main .content-nums-res strong {
  color: var(--background-color);
  background: var(--main-color);
  border: 2px solid var(--main-color);
  font-weight: 300;
  padding: 2px 60px;
  text-transform: uppercase;
  cursor: pointer;
}

main .content-nums-res strong:hover {
  color: var(--main-color);
  background: var(--background-color);
}

main .content-collage-imgs,
main .content-nums-res {
  max-width: 825px;
  margin: 0 auto;
  position: relative;
}

main .content-nums-res strong {
  padding: 10px 80px;
  padding-top: 14px;
}

main .content-nums-res .restaurante-reserva-data {
  border: 1px solid;
  padding: 20px;
}

@media (min-width: 990px) {
  main .content-nums-res {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  main .content-nums-res > span {
    height: 1.375rem;
    width: 0;
    margin: 0 140px;
    border-right: 2px solid var(--secondary-color);
  }
}

@media (min-width: 1300px) {
  .restaurante main .text-and-banner {
    position: relative;
  }

  .restaurante main .text-of-contnet {
    padding-left: 210px;
  }

  .restaurante main .text-and-banner::before {
    content: url(pattern-restaurante-clp.png);
    position: absolute;
    z-index: -1;
    bottom: 0%;
    left: -3.5%;
  }

  .restaurante main .content-collage-imgs::before {
    content: url(pattern1-restaurante-clp.png);
    position: absolute;
    z-index: -1;
    bottom: 0%;
    top: calc(50% - 46px);
    left: 56%;
    transform: scale(0.8);
    height: max-content;
  }
}

/* Winebar */

@media (min-width: 1300px) {
  .winebar main .text-and-banner {
    position: relative;
  }

  .winebar main .text-of-contnet {
    padding-right: 210px;
  }

  .winebar main .text-and-banner::before {
    content: url(Icone-wineber-clp.png);
    position: absolute;
    z-index: -1;
    bottom: -30%;
    right: -2.5%;
    transform: scale(0.8);
  }
}

/* Panetteria & Rotisserie */

.panatteriaRotisserie .text-of-contnet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panatteriaRotisserie .text-of-contnet div{
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.panatteriaRotisserie .text-of-contnet a{
  background: #ce181e !important;
  padding: 10px;
  color: var(--background-color);
  width: 150px;
  text-align: center;
}

@media (min-width: 1300px) {
  .panatteriaRotisserie main .text-and-banner {
    position: relative;
  }

  .panatteriaRotisserie main .text-of-contnet {
    padding-left: 210px;
  }

  .panatteriaRotisserie main .text-and-banner::before {
    content: url(icone-panetteria-clp.png);
    position: absolute;
    z-index: -1;
    bottom: -15%;
    left: 0.5%;
    transform: scale(0.8);
  }
}

/* Caffe */

.caffe .text-of-contnet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.caffe .text-of-contnet p::after{
  border: none;
  margin-top: 0px;
}

.caffe .text-of-contnet div{
  display: flex;
  gap: 20px;
}

.caffe .text-of-contnet a{
  background: #ce181e !important;
  padding: 10px;
  color: var(--background-color);
  width: 150px;
  text-align: center;
}

.caffe .text-of-contnet a strong{
  color: var(--background-color);
}

@media (min-width: 1300px) {
  .caffe main .text-and-banner {
    position: relative;
  }

  .caffe main .text-of-contnet {
    padding-left: 210px;
  }

  .caffe main .text-and-banner::before {
    content: url(Icone-caffe-clp.png);
    position: absolute;
    z-index: -1;
    bottom: -45%;
    left: -3.5%;
    transform: scale(0.8);
  }
}

@media (min-width: 1300px) {
  .caffe main .text-and-banner::before {
    bottom: -30%;
  }
}

/* Eventos */

.eventos .text-of-contnet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eventos .text-of-contnet p::after {
  border: none;
}


.eventos .text-of-contnet div{
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.eventos .text-of-contnet a{
  background: #ce181e !important;
  padding: 10px;
  color: var(--background-color);
  width: 150px;
  text-align: center;
}

.newsletter-events-section {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-direction: column;
}

.newsletter-form-events {
  display: flex;
  flex-direction: column;
  max-width: 64.25rem;
  gap: 1.9375rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5625rem 0 1.5625rem;
}

.newsletter-form-events input {
  all: unset;
  font-family: "Roboto";
  text-align: left;
  width: 100%;
  max-width: 33.9375rem;
  height: 3.125rem;
  border: 1px solid var(--main-color);
  box-sizing: border-box;
  background-color: transparent;
  padding-left: 1.5625rem;
  font-size: 1.0625rem;
  font-weight: 400;
  outline: none;
  color: var(--main-color);
}

.newsletter-form-events textarea {
  resize: none;
  height: 8.125rem;
  border: 1px solid var(--main-color);
  width: 100%;
  max-width: 33.9375rem;
  color: var(--main-color);
  background-color: transparent;
  box-sizing: border-box;
  padding: 1.25rem;
  font-size: 1.5625rem;
  outline: none;
}

.newsletter-form-events input::placeholder,
.newsletter-form-events textarea::placeholder {
  color: var(--main-color);
  font-size: 1.0625rem;
  font-weight: 500;
}

.sendFormError {
  color: var(--main-color);
  font-size: 1rem;
  display: none;
}

.sendFormSucess {
  color: #938980;
  font-size: 1rem;
  display: none;
}

.news-letter-events-title {
  font-size: 1.9375rem;
  color: #938980;
  line-height: 2.3125rem;
  font-weight: 500;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  box-sizing: border-box;
  max-width: 780px;
}

.send-newsletter-events-btn {
  all: unset;
  font-family: "Roboto";
  border: 0;
  cursor: pointer;
  height: 3.125rem;
  background-color: var(--main-color);
  color: #fffdf0;
  width: 100%;
  max-width: 280px;
  font-weight: 500;
  font-size: 17px;
  line-height: 2.625rem;
  transition: all 0.2s ease-in-out;
}

.send-newsletter-events-btn:hover {
  background-color: #960a21;
}

@media (min-width: 1300px) {
  .eventos main .text-of-contnet h1 {
    position: relative;
    right: 28%;
  }

  .eventos main .text-and-banner {
    position: relative;
  }

  .eventos main .text-of-contnet {
    padding-left: 210px;
  }

  .eventos main .text-and-banner::before {
    content: url(icones-eventos-clp.png);
    position: absolute;
    z-index: -1;
    bottom: -52%;
    left: -2.5%;
    transform: scale(0.8);
  }
}

@media (max-width: 768px) {
  .news-letter-events-title {
    padding: 0;
    font-size: 1.5625rem;
  }

  .newsletter-form-events input {
    font-size: 1.5625rem;
  }

  .send-newsletter-events-btn {
    width: 85%;
    height: 3.125rem;
  }

  .main .banner-banner-tree {
    margin-top: 0;
  }
}

/* Presenteie */

.presenteie .text-of-contnet {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.presenteie .text-of-contnet p::after {
  border: none;
}


.presenteie .text-of-contnet div{
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.presenteie .text-of-contnet a{
  background: #ce181e !important;
  padding: 10px;
  color: var(--background-color);
  width: 150px;
  text-align: center;
}

.presenteie main .text-of-contnet {
  padding-top: 20px;
  padding-bottom: 0;
}

.presenteie .content-collage-imgs{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100vw;
  text-align: center;
}

@media (min-width: 990px) {
  .presenteie main .text-of-contnet {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (min-width: 1300px) {
  .presenteie main .text-of-contnet h1 {
    position: relative;
    right: 28%;
  }

  .presenteie main .text-and-banner {
    position: relative;
  }

  .presenteie main .text-of-contnet {
    padding-left: 135px;
  }
}
