@charset "UTF-8";
@font-face {
  font-family: "SupraW03-Bold";
  src: url("./fonts/Supra-W03-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "SupraW03-Black-Extended";
  src: url("./fonts/Supra-W03-BlackExtended.ttf") format("truetype");
}
@font-face {
  font-family: "SupraW03-Demibold";
  src: url("./fonts/Supra-W03-Demibold.ttf") format("truetype");
}
@font-face {
  font-family: "SupraW03-Medium";
  src: url("./fonts/Supra-W03-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "SupraW03-Normal";
  src: url("./fonts/Supra-W03-Normal.ttf") format("truetype");
}
@font-face {
  font-family: "LTSuperior-Regular";
  src: url("./fonts/LTSuperior-Regular.otf") format("opentype");
}
@font-face {
  font-family: "LTSuperior-Thin";
  src: url("./fonts/LTSuperior-Thin.otf") format("opentype");
}
@font-face {
  font-family: "LTSuperior-Light";
  src: url("./fonts/LTSuperior-Light.otf") format("opentype");
}
@font-face {
  font-family: "LTSuperior-Medium";
  src: url("./fonts/LTSuperior-Medium.otf") format("opentype");
}
@font-face {
  font-family: "LTSuperior-Semibold";
  src: url("./fonts/LTSuperior-SemiBold.otf") format("opentype");
}
@font-face {
  font-family: "LTSuperior-ExtraBold";
  src: url("./fonts/LTSuperior-ExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "LTSuperior-Bold";
  src: url("./fonts/LTSuperior-Bold.otf") format("opentype");
}
.Supra-Bold {
  font-family: "SupraW03-Bold";
}

.Supra-Black-Extended {
  font-family: "SupraW03-Black-Extended";
}

.Supra-Demibold {
  font-family: "SupraW03-Demibold";
}

.Supra-Medium {
  font-family: "SupraW03-Medium";
}

.Supra-Normal {
  font-family: "SupraW03-Normal";
}

.LTS-Regular {
  font-family: "LTSuperior-Regular";
}

.LTS-Thin {
  font-family: "LTSuperior-Thin";
}

.LTS-Light {
  font-family: "LTSuperior-Light";
}

.LTS-Medium {
  font-family: "LTSuperior-Medium";
}

.LTS-Semibold {
  font-family: "LTSuperior-Semibold";
}

.LTS-ExtraBold {
  font-family: "LTSuperior-ExtraBold";
}

.LTS-Bold {
  font-family: "LTSuperior-Bold";
}

.general__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.general__container__container {
  width: 100%;
  max-width: 1920px;
}

.home__cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: auto;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.5);
}
.home__hero {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.home__hero__video {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 1;
  object-fit: cover;
}
.home__hero__social {
  position: absolute;
  z-index: 1;
  bottom: 5%;
  left: 5%;
}
.home__hero__social img {
  width: 30px;
  height: 30px;
}
.home__hero__social a {
  all: unset;
  margin-right: 15px;
  cursor: pointer;
}
.home__hero__legales {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
}
.home__hero__legales p {
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  font-family: "LTSuperior-Regular";
}
.home__panel {
  height: 100vh;
  min-height: 710px;
  overflow: hidden;
}
.home__panel__container {
  display: flex;
  width: 100%;
  height: 100%;
}
.home__panel__column {
  width: 50%;
  position: relative;
}
.home__panel__column picture {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.home__panel__column img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home__panel__arrows-right {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.home__panel__arrows-left {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.home__panel .arrow {
  border: none;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: auto;
  background-color: unset;
}
.home__panel .arrow svg {
  width: 30px;
}
.home__panel .arrow--left svg {
  transform: scaleX(-1);
  transform-origin: center;
}
.home__panel__button-container {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
}
.home__panel__button {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 43px;
  border-radius: 30px;
  background-color: #FE7C5A;
  color: white !important;
  font-family: "LTSuperior-Light";
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}
.home__panel img,
.home__panel source {
  transition: opacity 1s ease-in-out;
}
@media (max-width: 1025px) {
  .home__panel {
    height: 100vh;
    min-height: unset;
  }
  .home__panel__container {
    flex-direction: column;
  }
  .home__panel__column {
    width: 100%;
    height: 100%;
  }
}
.home__panel .slide-out-right {
  animation: slideOutRight 0.5s forwards;
}
.home__panel .slide-in-right {
  animation: slideInRight 0.5s forwards;
}
.home__panel .fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.home__panel .fade-in {
  opacity: 1;
  transition: opacity 0.5s ease;
}
@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.home__panel .carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home__panel .carousel-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 100%;
  transition: transform 0.6s ease;
  z-index: 1;
}
.home__panel .carousel-img.active {
  left: 0;
  transform: translateX(-100%);
  z-index: 2;
}
.home__panel .carousel-img.out {
  transform: translateX(-200%);
  z-index: 1;
}
.home__slider {
  width: 100%;
  height: 100vh;
  min-height: 672px;
  background-color: #262626;
  position: relative;
}
.home__slider__contenedor-button {
  left: 10%;
  bottom: 10%;
  position: absolute;
  z-index: 3;
}
.home__slider__contenedor-button__button {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 43px;
  border-radius: 30px;
  background-color: #262626;
  color: white !important;
  font-family: "LTSuperior-Light";
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}
.home__slider__bg {
  position: relative;
  width: 100%;
  height: 100%;
}
.home__slider__bg__img {
  transition: opacity 0.4s ease;
  position: absolute;
  width: 100%;
  height: 100%;
}
.home__slider__botella-container {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
}
.home__slider__botella-container .botella-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}
.home__slider__botella-container .botella-slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home__slider__botella-container__botella {
  width: 22vh;
  user-select: none;
  pointer-events: none;
  transform: rotate(10deg);
}
@media (max-width: 1025px) {
  .home__slider {
    height: 40vh;
    min-height: 670px;
  }
  .home__slider__bg__img {
    object-fit: cover;
  }
  .home__slider__contenedor-button {
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    text-align: center;
  }
  .home__slider__contenedor-button__button {
    width: 150px;
    height: 38px;
    font-size: 0.7rem;
  }
  .home__slider__botella-container .botella-slide {
    align-items: flex-end;
  }
  .home__slider__botella-container__botella {
    width: 14vh;
    max-width: 130px;
    transform: rotate(0deg);
  }
}
.home__marcas {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 95vh;
  min-height: 812px;
  background-color: #262626;
  position: relative;
}
.home__marcas__picture-vinos {
  position: absolute;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
}
.home__marcas__picture-vinos img {
  width: 100%;
  height: 60%;
}
.home__marcas__titulo {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FD7B59;
  text-align: center;
  padding: 5%;
}
.home__marcas__marcas-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2% 0;
}
.home__marcas__marcas-container__item {
  height: 60px;
}
.home__marcas__marcas-container__item img {
  width: 100%;
  height: 100%;
}
.home__marcas__marcas-container__item__hide {
  display: none;
}
.home__marcas__marcas-container .marcas-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: scroll-left 25s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.home__marcas__content {
  margin-top: auto;
  padding: 5%;
}
.home__marcas__content__titulo {
  font-size: 5rem;
  font-family: "SupraW03-Black-Extended";
  color: #FD7B59;
  text-transform: uppercase;
}
.home__marcas__content__text {
  color: white;
}
@media (max-width: 1025px) {
  .home__marcas {
    height: 55vh;
    min-height: 500px;
  }
  .home__marcas__picture-vinos {
    display: none;
  }
  .home__marcas__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .home__marcas__content__titulo {
    text-align: center;
    font-size: 2rem;
  }
  .home__marcas__content__text {
    text-align: center;
  }
  .home__marcas__marcas-container__item {
    flex: 0 0 auto;
    width: 290px;
    height: 100px;
  }
  .home__marcas__marcas-container__item__hide {
    display: block;
  }
}
.home__mixologia {
  display: flex;
  height: 60vh;
  min-height: 600px;
  max-height: 800px;
}
.home__mixologia__contenedor {
  width: 33.33%;
  height: 100%;
}
.home__mixologia__contenedor__item {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  overflow: hidden;
}
.home__mixologia__contenedor__item__picture {
  transition: all 0.5s ease;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.home__mixologia__contenedor__item__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__mixologia__contenedor__item-content {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
}
.home__mixologia__contenedor__item-content__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20%;
}
.home__mixologia__contenedor__item-content__content__title {
  font-family: "SupraW03-Black-Extended";
  font-size: 3rem;
  text-align: center;
  letter-spacing: -1.5px;
  line-height: 80%;
  text-transform: uppercase;
}
.home__mixologia__contenedor__item-content__botella {
  transition: all 0.6s ease;
  position: absolute;
  height: 100%;
  top: 20%;
  right: -150px;
}
.home__mixologia__contenedor__item-content__botella__img {
  width: 120px;
  transform: rotate(270deg);
}
.home__mixologia__contenedor-button {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
.home__mixologia__contenedor-button__button {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 43px;
  border-radius: 30px;
  background-color: #262626;
  color: white !important;
  font-family: "LTSuperior-Light";
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 1500px) {
  .home__mixologia {
    height: 90vh;
  }
  .home__mixologia__contenedor__item-content__content__title {
    font-size: 3.6rem;
  }
  .home__mixologia__contenedor__item-content__botella__img {
    width: 150px;
  }
}
@media (max-width: 1025px) {
  .home__mixologia {
    display: none;
  }
}
.home__mixologia__mobile {
  display: none;
}
.home__mixologia__mobile__img {
  width: 100%;
  height: 60%;
}
.home__mixologia__mobile__img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home__mixologia__mobile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__mixologia__mobile__description {
  width: 100%;
  height: 40%;
  padding: 10%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}
.home__mixologia__mobile__description__title {
  font-family: "SupraW03-Black-Extended";
  font-size: 3.5rem;
  text-align: center;
  letter-spacing: -1.5px;
  line-height: 80%;
  text-transform: uppercase;
}
.home__mixologia__mobile__description__p {
  color: white;
  font-size: 1.5rem;
  text-align: center;
}
.home__mixologia__mobile__contenedor-button {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
.home__mixologia__mobile__contenedor-button__button {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 43px;
  border-radius: 30px;
  background-color: #262626;
  color: white !important;
  font-family: "LTSuperior-Light";
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 1025px) {
  .home__mixologia__mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    min-height: 760px;
  }
  .home__mixologia__mobile__description {
    min-height: 350px;
  }
}
@media (max-width: 500px) {
  .home__mixologia__mobile__description {
    min-height: 315px;
  }
}
.home__mixologia__contenedor__item:hover picture {
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.home__mixologia__contenedor__item:hover .home__mixologia__contenedor__item-content {
  visibility: visible;
  transition: all 0.5s ease;
  opacity: 1;
  transition-delay: 0.4s;
}
.home__mixologia__contenedor__item:hover .home__mixologia__contenedor__item-content__botella {
  transition: all 0.6s ease;
  right: 60px;
}
.home__siguenos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 80vh;
  min-height: 812px;
  background-color: #262626;
  padding: 5%;
}
.home__siguenos__polaroids {
  display: flex;
  position: relative;
  width: fit-content;
  left: 50%;
  transform: translateX(-45%);
}
.home__siguenos__polaroids img {
  width: 100%;
}
.home__siguenos__polaroids__siguenos {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.home__siguenos__polaroids__siguenos__title {
  all: unset;
  cursor: pointer;
  color: #FE7C5A !important;
  font-size: 1.6rem;
  font-family: "SupraW03-Bold";
  text-transform: uppercase;
  line-height: 1;
}
.home__siguenos__polaroids__siguenos__subtitle {
  color: #FE7C5A;
  text-transform: uppercase;
  font-family: "SupraW03-Demibold";
  font-size: 0.7rem;
}
.home__siguenos__polaroids__siguenos__text {
  position: absolute;
  right: 15%;
  bottom: -75%;
}
.home__siguenos__polaroids__siguenos__text__1 {
  width: 120px;
}
.home__siguenos__polaroids__siguenos__text__2 {
  width: 400px;
}
.home__siguenos__polaroids__siguenos__text2 {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
}
.home__siguenos__polaroids__siguenos__text2__1 {
  width: 100%;
  height: 100%;
  right: 0;
  position: relative;
}
.home__siguenos__polaroids__siguenos__text2__1 img {
  width: 300px;
  position: absolute;
  right: 0;
  bottom: -10%;
}
.home__siguenos__polaroids__siguenos__text2__2 {
  width: 100%;
  height: 100%;
  left: 0;
  position: relative;
}
.home__siguenos__polaroids__siguenos__text2__2 img {
  width: 500px;
  position: absolute;
  top: -50%;
  left: -10%;
}
.home__siguenos__polaroids__item {
  position: relative;
  margin-top: 90px;
}
.home__siguenos__polaroids__item:nth-child(2) {
  top: -15px;
  z-index: 2;
}
.home__siguenos__polaroids__item:nth-child(3) {
  left: -30px;
  z-index: 1;
}
.home__siguenos__polaroids__item:nth-child(4) {
  left: -60px;
  top: -15px;
}
.home__siguenos__polaroids__item:nth-child(5) {
  left: -120px;
  top: -15px;
}
.home__siguenos__polaroids__item:nth-child(6) {
  left: -190px;
  top: -15px;
}
@media (max-width: 1025px) {
  .home__siguenos {
    justify-content: center;
    height: 70vh;
    min-height: 760px;
    box-sizing: content-box;
  }
  .home__siguenos__polaroids {
    left: -20%;
    transform: none;
    width: 150vw;
  }
  .home__siguenos__polaroids__siguenos {
    left: 15%;
    top: -10%;
  }
  .home__siguenos__polaroids__siguenos__text {
    top: 500%;
  }
  .home__siguenos__polaroids__siguenos__text__1 {
    width: 120px;
  }
  .home__siguenos__polaroids__siguenos__text2__1 img {
    width: 100%;
  }
  .home__siguenos__polaroids__item {
    width: 70vw;
  }
  .home__siguenos__polaroids__item img {
    width: unset;
  }
  .home__siguenos__polaroids__item:nth-child(2) {
    top: 0;
    margin-top: 0;
  }
  .home__siguenos__polaroids__item:nth-child(3) {
    top: 0;
    margin-top: 0;
  }
  .home__siguenos__polaroids__item:nth-child(4) {
    top: 0;
    margin-top: 0;
  }
  .home__siguenos__polaroids__item:nth-child(5) {
    top: 0;
    margin-top: 0;
  }
  .home__siguenos__polaroids__item:nth-child(6) {
    top: 0;
    margin-top: 0;
  }
}
.home__ubicaciones {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
.home__ubicaciones p {
  color: white;
  font-family: "SupraW03-Black-Extended";
  text-transform: uppercase;
  text-align: center;
  font-size: 4rem;
  margin-top: 15px;
}
.home__ubicaciones__button {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 350px;
  background-color: #262626;
  border-radius: 50px;
  cursor: pointer;
  color: white !important;
  text-transform: uppercase;
  font-family: "SupraW03-Demibold";
}
@media (max-width: 1025px) {
  .home__ubicaciones {
    height: 60vh;
  }
  .home__ubicaciones p {
    font-size: 2rem;
  }
}

.productos__head {
  width: 100%;
}
.productos__head_image {
  width: 100%;
}
.productos__head_title1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
}
@media screen and (max-width: 768px) {
  .productos__head_title1 {
    top: 50%;
    width: 88%;
  }
}
.productos__head__titleback {
  position: absolute;
  width: 100%;
  top: 7%;
  left: 0%;
  z-index: -1;
}
.productos__head__titleback2 {
  position: absolute;
  width: 100%;
  bottom: 10%;
  left: 0%;
}
.productos__listado {
  width: 100%;
  background-color: #111111;
  opacity: 0.91;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 5%;
}
.productos__listado_rayo {
  width: 60%;
}
.productos__texto1 {
  color: #ffffff;
  font-size: 0.9rem;
}
.productos__btn {
  background-color: #ffffff;
  color: #000000;
  width: 9rem;
  border-radius: 25px;
  border-color: #ffffff;
  border: none;
  font-size: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.productos__btn:active {
  background-color: #b61942;
}
.productos__item {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  padding: 5%;
  margin-bottom: 5%;
}
.productos__item_title {
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 2.1rem;
  text-align: center;
}
.productos__item_subtitle {
  font-size: 0.9rem;
  text-align: center;
}
.productos__botella {
  width: 25%;
  display: flex;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.acercanos__marco {
  margin: 0.3rem;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 768px) {
  .acercanos__marco {
    text-align: center;
    width: 100%;
  }
}
.acercanos__item {
  transform: translateY(20%);
}
@media screen and (max-width: 768px) {
  .acercanos__item {
    transform: translateY(4%);
  }
}
.acercanos__titulo {
  position: absolute;
  z-index: 3;
  top: 5%;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: bolder;
  text-align: center;
  white-space: nowrap;
  width: 100%;
  transition: width 0.8s ease;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .acercanos__titulo {
    padding-left: 0rem;
    position: absolute;
    margin-bottom: 5rem;
  }
}
.acercanos__titulo span {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.acercanos__valores {
  width: 70%;
  z-index: 3;
  bottom: 12%;
  text-align: center;
  background-color: #183051;
  color: #ffffff;
  align-content: center;
  margin-left: 15%;
  font-size: 36px;
  margin-top: 3rem;
  margin-bottom: -8px;
  transition: all ease-in 0.5s;
}
@media screen and (max-width: 768px) {
  .acercanos__valores {
    padding-left: 0rem;
  }
}
.acercanos__text {
  position: absolute;
  z-index: 3;
  margin-right: 10%;
  margin-left: 10%;
  width: 80%;
  text-align: center;
  color: #000000;
  align-content: center;
  font-size: 16px;
  display: block;
  top: 22%;
}
@media screen and (max-width: 768px) {
  .acercanos__text {
    padding-left: 0rem;
  }
}
.acercanos__botella {
  position: absolute;
  z-index: 3;
  height: 60%;
  text-align: center;
  color: #000000;
  align-content: center;
  display: block;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  transition: transform 0.5s ease; /* duración y efecto suave */
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .acercanos__botella {
    padding-left: 0rem;
  }
}
.acercanos__btn {
  background-color: #000000;
  color: #ffffff;
  border-radius: 25px;
  width: 30%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: absolute;
  bottom: 10%;
  right: 10%;
  text-align: center;
  text-decoration: none;
}
.acercanos__img {
  width: 100%;
  height: auto;
}
.acercanos__back {
  width: 100%;
  opacity: 0.5;
}

.overlay {
  position: absolute;
  transition: all 0.4s ease;
  opacity: 1;
}

.acercanos__marco:hover .overlay {
  opacity: 0;
}

.acercanos__marco:hover .acercanos__titulo {
  width: 0;
  opacity: 1;
  margin-left: 10%;
}

.acercanos__marco:hover .acercanos__text {
  display: none;
  transition: all ease-in-out 1s;
  opacity: 1;
}

.acercanos__marco:hover .acercanos__botella {
  transform: rotate(25deg) scale(1.5) translateX(-40%) translateY(-10%);
}

.FadeEffect {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0px;
}

@media screen and (max-width: 768px) {
  .list_cat {
    display: grid;
    text-align: center;
  }
}

.tragos {
  width: 100vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.tragos__bg {
  display: block;
  width: 100%;
  height: 100vh;
}
.tragos__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1025px) {
  .tragos__bg {
    height: 100dvh;
  }
}
.tragos__info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #191919;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  opacity: 0.9;
}
.tragos__info__button {
  margin-right: 5%;
}
.tragos__info__button button {
  all: unset;
  background: white;
  color: #000;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  width: 200px;
  height: 43px;
  border-radius: 40px;
  border: unset;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.231372549);
  text-transform: uppercase;
  font-family: "LTSuperior-Light";
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
}
.tragos__info__button button span {
  display: inline-block;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  margin-left: 2px;
  margin-top: 5px;
}
.tragos__info__button button svg {
  width: 25px;
}
.tragos__info__white {
  color: white;
}
.tragos__info__white .tragos__content__column-left li {
  border-bottom: 1px solid white;
}
.tragos__info__black {
  color: black;
}
.tragos__info__black .tragos__content__column-left li {
  border-bottom: 1px solid black;
}
@media (min-width: 1500px) {
  .tragos__info {
    height: 150px;
  }
}
@media (max-width: 1025px) {
  .tragos__info__button button {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.tragos__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
}
.tragos__title h1 {
  color: white;
  font-size: 7rem;
  font-family: "SupraW03-Black-Extended";
  text-shadow: 4px 5px 0px #FE7C5A;
  line-height: 90px;
}
@media (max-width: 1025px) {
  .tragos__title h1 {
    font-size: 3rem;
    line-height: 45px;
  }
}
.tragos__background {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: border-radius 0.4s ease;
}
.tragos__botella {
  position: relative;
  right: -120%;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.tragos__botella img {
  width: 100px;
  transform: rotate(270deg);
}
@media (max-width: 1025px) {
  .tragos__botella {
    position: absolute;
    right: unset;
    left: 50%;
    bottom: -500%;
    transform: translate(-50%);
    width: unset;
    height: unset;
  }
  .tragos__botella img {
    width: 75px;
    height: 320px;
    transform: unset;
  }
}
.tragos__content {
  display: none;
  flex-direction: column;
  padding: 3% 5%;
}
.tragos__content h2 {
  font-family: "SupraW03-Black-Extended";
  text-transform: uppercase;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 0 0 35px 0;
}
.tragos__content__columns {
  display: flex;
  padding: 35px 0 0 0;
}
.tragos__content__column-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tragos__content__column-left li {
  font-family: "LTSuperior-Semibold";
  font-size: 0.7rem;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(20px);
}
.tragos__content__column-left li:last-child {
  border-bottom: none;
}
.tragos__content__column-right {
  max-width: 450px;
  padding: 0 8%;
  box-sizing: content-box;
}
.tragos__content__column-right span {
  margin-left: 30px;
  font-family: "LTSuperior-Semibold";
  text-transform: uppercase;
}
.tragos__content__column-right li {
  font-size: 0.8rem;
}
@media (max-width: 1025px) {
  .tragos__content {
    padding: 9% 5%;
  }
  .tragos__content h2 {
    padding: 0 0 20px 0;
    text-align: center;
  }
  .tragos__content__columns {
    flex-direction: column;
    padding: 0;
  }
  .tragos__content__column-left li {
    font-size: 0.6rem;
  }
  .tragos__content__column-right {
    padding: 0;
    padding-top: 40px;
    margin-left: -15px;
    font-size: 0.6rem;
  }
}
.tragos__content-mobile {
  display: none;
  flex-direction: column;
  padding: 3% 5%;
}
.tragos__content-mobile h2 {
  font-family: "SupraW03-Black-Extended";
  text-transform: uppercase;
  color: #191919;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2509803922);
  border-bottom: 1px solid #000;
  padding: 0 0 35px 0;
}
.tragos__content-mobile__columns {
  display: flex;
  padding: 35px 0 0 0;
}
.tragos__content-mobile__columns h3 {
  font-size: 1rem;
  font-family: "LTSuperior-Semibold";
}
.tragos__content-mobile__column-left span {
  margin-left: 30px;
}
.tragos__content-mobile__column-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tragos__content-mobile__column-left li {
  font-family: "LTSuperior-Semibold";
  font-size: 0.7rem;
  padding: 0.5rem 0;
  opacity: 0;
  transform: translateY(20px);
}
.tragos__content-mobile__column-left li:last-child {
  border-bottom: none;
}
.tragos__content-mobile__column-right span {
  margin-left: 30px;
  font-family: "LTSuperior-Semibold";
  text-transform: uppercase;
}
.tragos__content-mobile__column-right li {
  font-size: 0.8rem;
}
.tragos__content-mobile__column-right ul {
  padding-left: 8px;
}
@media (max-width: 1025px) {
  .tragos__content-mobile {
    padding: 9% 5%;
  }
  .tragos__content-mobile h2 {
    padding: 0 0 20px 0;
    text-align: center;
  }
  .tragos__content-mobile__columns {
    flex-direction: column;
    padding: 0 5%;
  }
  .tragos__content-mobile__column-left li {
    font-size: 0.6rem;
  }
  .tragos__content-mobile__column-right {
    padding: 0;
    padding-top: 40px;
    font-size: 0.6rem;
  }
}
.tragos__content-mobile .toggle-content-left,
.tragos__content-mobile .toggle-content-right {
  overflow: hidden;
}
.tragos__content-mobile .toggle-content-left.hidden,
.tragos__content-mobile .toggle-content-right.hidden {
  display: none;
}

#fijo {
  position: fixed;
  top: 75%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%) scale(1);
  z-index: 4;
  transition: transform 0.4s ease, filter 0.3s ease;
}

#fijo.anclado {
  position: absolute;
  left: 50%;
}

.card {
  height: 25vw;
  background-clip: border-box;
  border: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
}
@media screen and (max-width: 768px) {
  .card {
    height: unset;
  }
}

.cardcont {
  padding-top: 8%;
}

.detheader {
  height: 75rem;
}
@media screen and (max-width: 768px) {
  .detheader {
    height: 80rem;
  }
}

.detalle_degradado1 {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.detalle_title1 {
  padding-top: 16%;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .detalle_title1 {
    padding-top: 47%;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}

.detalle_title2 {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 5%;
  bottom: 6%;
  height: 15%;
}
@media screen and (max-width: 768px) {
  .detalle_title2 {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 5%;
    bottom: 12%;
    height: 8%;
  }
}

.detalle__subtitle2 {
  position: absolute;
  left: 5%;
  bottom: 19%;
}
@media screen and (max-width: 768px) {
  .detalle__subtitle2 {
    font-size: 0.9rem;
  }
}

.detalle__subtitle3 {
  position: absolute;
  right: 5%;
  bottom: 3%;
  font-size: 1.4rem;
  text-align: right;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .detalle__subtitle3 {
    position: absolute;
    right: 5%;
    bottom: 0%;
    font-size: 0.7rem;
  }
}
.detalle__subtitle3__t1 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .detalle__subtitle3__t1 {
    font-size: 1.5rem;
  }
}
.detalle__subtitle3__t2 {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .detalle__subtitle3__t2 {
    font-size: 2rem;
  }
}
.detalle__subtitle3__t3 {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .detalle__subtitle3__t3 {
    font-size: 2.5rem;
  }
}

.detalle_bcentro {
  width: 15%;
}
@media screen and (max-width: 768px) {
  .detalle_bcentro {
    padding-top: 20px;
    width: 38%;
    margin-left: auto;
    margin-right: auto;
  }
}

.detalle_imagecard {
  width: 18%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8%;
}
@media screen and (max-width: 768px) {
  .detalle_imagecard {
    margin-bottom: 2rem;
  }
}

.detalle__backgral {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.backbtn {
  position: absolute;
  top: 15%;
  width: 5%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  .backbtn {
    position: absolute;
    top: 8%;
    width: 9%;
    left: 7%;
  }
}

.scrolldown {
  position: absolute;
  top: 62%;
  width: 8%;
  right: 10%;
}

.rs1 {
  position: absolute;
  top: 63%;
  width: 3%;
  left: 6%;
}

.rs2 {
  position: absolute;
  top: 63%;
  width: 3%;
  left: 10%;
}

.rs3 {
  position: absolute;
  top: 63%;
  width: 3%;
  left: 14%;
}

.detcaracteristicas__cont {
  height: 1100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont {
    height: 50rem;
    position: relative;
  }
}
.detcaracteristicas__cont__grapes {
  position: absolute;
  left: 0%;
  top: 0%;
  height: 100%;
  width: 100%;
}
.detcaracteristicas__cont__line1 {
  position: absolute;
  top: 3%;
  width: 30%;
  right: 50%;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__line1 {
    width: 35%;
    right: unset;
    left: 0%;
    top: 17%;
    height: 5px;
  }
}
.detcaracteristicas__cont__line2 {
  position: absolute;
  top: 27%;
  width: 30%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__line2 {
    width: 35%;
    left: unset;
    right: 0%;
    top: 47%;
    height: 5px;
  }
}
.detcaracteristicas__cont__line3 {
  position: absolute;
  top: 51%;
  width: 30%;
  right: 50%;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__line3 {
    width: 35%;
    right: unset;
    left: 0%;
    top: 77%;
    height: 5px;
  }
}
.detcaracteristicas__cont__car1 {
  position: absolute;
  top: 14%;
  right: 80%;
  width: 10%;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__car1 {
    left: 50%;
    transform: translateX(-50%) !important;
    width: 30%;
    top: 10%;
  }
}
.detcaracteristicas__cont__car2 {
  position: absolute;
  top: 34%;
  width: 10%;
  left: 80%;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__car2 {
    left: 50%;
    transform: translateX(-50%) !important;
    width: 30%;
    top: 40%;
  }
}
.detcaracteristicas__cont__car3 {
  position: absolute;
  top: 66%;
  width: 10%;
  right: 75%;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__car3 {
    left: 50%;
    transform: translateX(-50%) !important;
    width: 30%;
    top: 70%;
  }
}
.detcaracteristicas__cont__desc1 {
  position: absolute;
  top: 30%;
  right: 77%;
  width: 16%;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__desc1 {
    left: 50%;
    transform: translateX(-50%) !important;
    width: 40%;
    top: 26%;
    font-size: 1rem;
  }
}
.detcaracteristicas__cont__desc2 {
  position: absolute;
  top: 50%;
  width: 16%;
  left: 77%;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__desc2 {
    left: 50%;
    transform: translateX(-50%) !important;
    width: 40%;
    top: 56%;
    font-size: 1rem;
  }
}
.detcaracteristicas__cont__desc3 {
  position: absolute;
  top: 82%;
  width: 16%;
  right: 72%;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__desc3 {
    left: 50%;
    transform: translateX(-50%) !important;
    width: 40%;
    top: 87%;
    font-size: 1rem;
  }
}
.detcaracteristicas__cont__garab1 {
  position: absolute;
  left: 29%;
  bottom: 20%;
  width: 6%;
}
@media screen and (max-width: 768px) {
  .detcaracteristicas__cont__garab1 {
    position: absolute;
    left: 19%;
    bottom: 15%;
    width: 6%;
  }
}
.detcaracteristicas__cont__garab2 {
  position: absolute;
  right: 27%;
  top: 16%;
  width: 6%;
}

.detfoto__cont {
  height: 65vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .detfoto__cont {
    height: 90vw;
  }
}
.detfoto__title1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  width: 30%;
  left: 6%;
}
@media screen and (max-width: 768px) {
  .detfoto__title1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 55%;
  }
}
.detfoto__foto1 {
  position: absolute;
  right: -2%;
  top: -15%;
  width: 25%;
  transform: rotate(19deg) !important;
  transform-origin: center;
}
.detfoto__foto2 {
  position: absolute;
  right: 0%;
  top: 20%;
  width: 25%;
  transform: rotate(-3deg) !important;
  transform-origin: center;
  z-index: 2;
}
.detfoto__foto3 {
  position: absolute;
  right: 0%;
  top: 56%;
  width: 25%;
  transform: rotate(-14deg) !important;
  transform-origin: center;
  z-index: 1;
}
.detfoto__caption1 {
  position: absolute;
  right: 4%;
  top: 57%;
  width: 15%;
  transform: rotate(-3deg) !important;
  transform-origin: center;
  z-index: 4;
}
.detfoto__caption2 {
  position: absolute;
  right: 2%;
  top: 92%;
  width: 15%;
  transform: rotate(-5deg) !important;
  transform-origin: center;
  z-index: 4;
}

.temperature__cont {
  position: relative;
  height: 47vw;
}
@media screen and (max-width: 768px) {
  .temperature__cont {
    height: 150vw;
  }
}
.temperature__back {
  position: absolute;
  left: 0%;
  top: 0%;
  height: 100%;
  width: 100%;
}
.temperature__rec {
  position: absolute;
  right: 0%;
  bottom: 30%;
  color: #fff;
  border: 3px solid #fff;
  padding: 1rem;
  width: 27%;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .temperature__rec {
    left: 50%;
    transform: translateX(-50%) !important;
    bottom: 0%;
    color: #ffffff;
    font-size: 1.5rem;
    width: 65%;
    text-align: center;
    line-height: 1.2;
    border: none;
  }
}
.temperature__rec__text {
  font-size: 1.5rem;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .temperature__rec__text {
    font-size: 1rem;
  }
}
.temperature__line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 60%;
}
@media screen and (max-width: 768px) {
  .temperature__line {
    height: 50%;
  }
}
.temperature__dot1 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  height: 5%;
}
.temperature__dot2 {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  height: 5%;
}
.temperature__tipo {
  position: absolute;
  top: 20%;
  left: 6%;
  color: #ffffff;
  font-size: 2rem;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .temperature__tipo {
    left: 50%;
    transform: translateX(-50%) !important;
    top: 6%;
    color: #ffffff;
    font-size: 1.1rem;
    width: 70%;
    text-align: center;
    line-height: 1.2;
  }
}

.overlaytemp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background 0.3s ease;
}

.detprevend__cont {
  height: 47vw;
  position: relative;
}
.detprevend__title {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.detgrid {
  padding-bottom: 10rem;
}
.detgrid__title {
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: bolder;
  text-align: center;
  line-height: 1;
  height: 3rem;
}

.ubicaciones__header {
  position: relative;
}
.ubicaciones__header__back {
  width: 100%;
}
.ubicaciones__header__fade1 {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 60%;
}
.ubicaciones__header__fade2 {
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;
  height: 60%;
}
.ubicaciones__header__title1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}
@media screen and (max-width: 768px) {
  .ubicaciones__header__title1 {
    width: 85%;
  }
}
.ubicaciones__cont {
  padding-top: 8%;
}
@media screen and (max-width: 768px) {
  .ubicaciones__cont {
    padding-top: 35%;
  }
}
.ubicaciones__cont h1 {
  text-align: center;
  font-size: 65px;
  color: blue;
  max-width: 100%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .ubicaciones__cont h1 {
    max-width: 100%;
    font-size: 37px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.ubicaciones__cont p {
  text-align: left;
  font-size: 20px;
  color: gray;
  max-width: 100%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .ubicaciones__cont p {
    max-width: 100%;
    font-size: 14px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1600px) {
  .ubicaciones__cont p {
    font-size: calc(12px + 12 * (100vw - 360px) / 1560);
  }
}
.ubicaciones__listado {
  background-color: #000;
  height: 100%;
  overflow: auto;
  padding-left: 8%;
  padding-top: 5%;
  max-height: 550px;
}
.ubicaciones__listado__region {
  color: blue;
  font-size: 20px;
  margin-top: 1rem;
  translate: -23px;
}
.ubicaciones__listado__title {
  color: gray;
  font-size: 16px;
  margin-top: 15px;
}
@media (min-width: 1600px) {
  .ubicaciones__listado__title {
    font-size: calc(12px + 12 * (100vw - 360px) / 1560);
  }
}
.ubicaciones__listado__text {
  color: gray;
  font-size: 15px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.ubicaciones__tiendas {
  background-color: #2B2B2B;
}
.ubicaciones__tiendas__sec1 {
  background-color: #2B2B2B;
  border: 2px solid #ffffff;
  text-align: center;
  display: grid;
  place-items: center;
}
.ubicaciones__tiendas__sec2 {
  background-color: #fe7c5a;
  border: 2px solid #ffffff;
  text-align: center;
  display: grid;
  place-items: center;
}
.ubicaciones__tiendas__finca {
  width: 50%;
}
.ubicaciones__tiendas__label {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0;
  font-weight: bold;
}
.ubicaciones__tiendas__grid {
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 5%;
  padding-bottom: 5%;
}
@media screen and (max-width: 768px) {
  .ubicaciones__tiendas__grid {
    padding-left: 4%;
    padding-right: 4%;
  }
}
.ubicaciones__tiendas__link {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.ubicaciones__tiendas__logo {
  width: 100%;
}

.mapa_cont {
  height: 550px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .mapa_cont {
    height: 1000px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mapa_cont {
    height: 85%;
  }
}

.boton-div {
  padding: 12px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #2B2B2B;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.boton-div:hover {
  background-color: #e0e0e0;
  color: #000000;
}

.boton-div.activo {
  color: #000000;
  font-size: 1.1rem;
  transform: scale(1.05);
  height: 3.5rem;
  z-index: 9;
}

.boton-div img {
  width: 7%;
  object-fit: cover;
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
  transition: all 0.4s ease;
}

.boton-div.activo img {
  left: 20px;
  opacity: 1;
}

.texto {
  margin-left: 60px;
}

.boton-div.activo .texto {
  text-align: center;
}

.blog {
  display: flex;
  flex-direction: column;
  background-color: #2B2B2B;
  overflow: hidden;
}
.blog__hero {
  position: relative;
  width: 100%;
  height: 95vh;
}
.blog__hero picture {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.blog__hero img {
  position: absolute;
  object-fit: cover;
  top: 0;
  height: 100%;
  width: 100%;
}
.blog__hero h1 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-size: 9rem;
  font-family: "SupraW03-Black-Extended";
  text-shadow: 4px 5px 0px #FE7C5A;
}
@media (max-width: 1025px) {
  .blog__hero h1 {
    font-size: 6rem;
  }
}
.blog__main-article {
  display: flex;
  width: 100%;
  padding: 5% 0 5% 5%;
}
.blog__main-article__column-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  padding: 0 9% 0 0;
  position: relative;
}
.blog__main-article__column-content__title {
  font-family: "LTSuperior-Semibold";
  font-size: 2rem;
  color: white;
}
.blog__main-article__column-content__description {
  font-family: "LTSuperior-Regular";
  font-size: 1rem;
  color: white;
}
.blog__main-article__column-content__button {
  position: absolute;
  bottom: 5%;
  right: 9%;
}
.blog__main-article__column-content__button img {
  width: 33px;
}
.blog__main-article__column-image {
  width: 60%;
  aspect-ratio: 1106/740;
}
.blog__main-article__column-image picture {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.blog__main-article__column-image img {
  position: absolute;
  object-fit: cover;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 1025px) {
  .blog__main-article {
    display: none;
  }
}
.blog__random-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding: 5%;
  gap: 20px;
}
.blog__random-articles__card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog__random-articles__card__img {
  width: 100%;
  object-fit: cover;
}
.blog__random-articles__card__title {
  position: relative;
  padding: 6% 25% 6% 0;
}
.blog__random-articles__card__title p {
  font-family: "LTSuperior-Semibold";
  font-size: 1.3rem;
  color: white;
}
.blog__random-articles__card__title__button {
  position: absolute;
  top: 20%;
  right: 0;
}
.blog__random-articles__card__title__button img {
  width: 33px;
}
.blog__random-articles__card__description {
  font-family: "LTSuperior-Regular";
  font-size: 0.9rem;
  color: #A2A2A2;
}
@media (max-width: 1025px) {
  .blog__random-articles {
    grid-template-columns: 1fr;
    gap: 30px;
    height: auto;
  }
  .blog__random-articles__card {
    min-height: 600px;
  }
  .blog__random-articles__card__title {
    padding: 5%;
  }
  .blog__random-articles__card__title__button {
    bottom: -120%;
    left: 50%;
    top: unset;
    right: unset;
    transform: translate(-50%);
  }
  .blog__random-articles__card__title__button img {
    width: 55px;
  }
  .blog__random-articles__card__description {
    padding: 5%;
  }
}

.mixologia__scroll-wrapper {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: auto;
}
@media (max-width: 1025px) {
  .mixologia__scroll-wrapper {
    height: 100svh;
  }
}
.mixologia__trago {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1025px) {
  .mixologia__trago {
    height: 100svh;
  }
}
.mixologia__trago :last-child::after {
  content: "";
  display: block;
  height: 1px;
}

input,
textarea {
  height: 40px;
  text-align: left;
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 23px;
  border: 1px solid #ccc;
  background-color: transparent;
  color: white;
  box-sizing: border-box;
  text-indent: 15px;
}

input::placeholder,
textarea::placeholder {
  text-align: left;
}

.form-control {
  border-radius: 23px;
  border: 1px solid #ccc;
}

.btn-enviar {
  background-color: #FE7C5A;
  border-radius: 23px;
  color: white;
  border: none;
  padding: 10px 50px;
  cursor: pointer;
}

.titulo-contacto {
  position: absolute;
  top: 53%;
  left: 51%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.titulo-contacto-img {
  max-width: 80%;
  height: auto;
  transition: all 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.img-overlay-contacto {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  input,
  textarea {
    height: 85px;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 50px !important;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  textarea {
    height: 170px;
  }
  input::placeholder,
  textarea::placeholder {
    text-align: center;
    padding-top: 20px;
  }
  .titulo-contacto {
    top: 49%;
    left: 40%;
  }
  .titulo-contacto-img {
    max-width: 120%;
  }
  .img-overlay-contacto {
    width: 100%;
  }
}
body,
html {
  overflow-x: hidden;
}

.titulo-blog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}
.titulo-blog h1 {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-size: 3rem;
  font-family: "SupraW03-Black-Extended";
  padding: 0 15%;
}
@media (max-width: 1025px) {
  .titulo-blog h1 {
    font-size: 1.7rem;
    padding: 0 8%;
    margin-top: 3rem;
    position: absolute;
    bottom: 10%;
    margin-left: auto;
    margin-right: auto;
  }
}

.img-overlay-fondo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.img-texto {
  max-width: 40%;
  height: auto;
  transition: all 0.3s ease;
  display: block;
  margin: 130px auto 0 auto;
}

.form-suscripcion {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 0 8px 0 20px;
  height: 70px;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}

.input-suscripcion {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  outline: none;
  height: 100%;
  min-width: 200px;
}

.input-suscripcion::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.boton-suscripcion {
  background-color: #FE7C5A;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 50px;
}

.boton-suscripcion:hover {
  background-color: #e96646;
}

.texto-linea {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin: 0;
  width: 130%;
  max-width: none;
  margin-left: -15%;
  position: relative;
  padding: 0 10px;
}

.linea-superior {
  display: block;
  width: 130%;
  max-width: none;
  margin-left: -15%;
  opacity: 0.4;
  height: auto;
}

.linea_debajo {
  object-fit: contain;
  width: 150%;
  height: auto;
  opacity: 0.4;
  margin-left: -25%;
}

.columna-texto {
  width: 170%;
  white-space: normal;
  line-height: 1.2;
  color: #A2A2A2;
}

.titulo {
  line-height: 1.2;
  font-family: "LTSuperior-Regular", sans-serif;
  font-weight: bold;
  font-size: 20px;
}

@media (min-width: 768px) {
  .columna-izquierda {
    position: absolute;
    left: -209px;
    top: 0;
  }
  .columna-centro {
    margin-left: 205px;
  }
  .columna-derecha {
    position: absolute;
    right: -90px;
    top: 0;
  }
  .columna-img {
    width: 150%;
  }
  .columna-texto {
    width: 170%;
  }
}
@media (max-width: 767px) {
  .columna-izquierda,
  .columna-centro,
  .columna-derecha {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .columna-img,
  .columna-texto {
    width: 100% !important;
  }
  .form-suscripcion {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    height: auto;
    border-radius: 30px;
    border: none;
    background: transparent;
  }
  .input-suscripcion {
    width: 100%;
    max-width: 500px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    background-color: transparent;
    color: white;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
  }
  .input-suscripcion::placeholder {
    text-align: left;
  }
  .boton-suscripcion {
    width: 60%;
    font-size: 16px;
    margin-top: 15px;
    height: 60px;
    margin-left: 60px;
  }
  .texto-linea,
  .linea-superior {
    margin-left: 0;
    width: 100%;
  }
  h6.text-white {
    text-align: center !important;
  }
  .linea_debajo {
    max-width: 93%;
    margin-left: 3%;
  }
}
.blog-detalle__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-detalle__content__img {
  width: 70%;
  border-radius: 8px;
  padding: 5%;
  align-self: center;
}
@media (max-width: 1025px) {
  .blog-detalle__content {
    padding: 10%;
  }
  .blog-detalle__content__img {
    width: 100%;
  }
}

.faqs__header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70dvh;
  min-height: 600px;
  background-color: #2B2B2B;
}
.faqs__header__title {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-size: 9rem;
  font-family: "SupraW03-Black-Extended";
  text-shadow: 4px 5px 0px #FE7C5A;
}
@media (max-width: 1025px) {
  .faqs__header__title {
    font-size: 6rem;
  }
}
.faqs__franja {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20dvh;
  min-height: 200px;
  background-color: #FE7C5A;
}
.faqs__franja p {
  color: white;
}
.faqs__accordion-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #2B2B2B;
  padding: 10% 0;
}
.faqs__accordion-container .accordion {
  width: 60%;
}
.faqs__accordion-container .accordion-button {
  font-family: "LTSuperior-Semibold";
  background-color: #2B2B2B;
  color: white;
  font-weight: bold;
  position: relative;
}
.faqs__accordion-container .accordion-button::after {
  display: none !important;
}
.faqs__accordion-container .accordion-button .icon-toggle {
  margin-left: auto;
  font-size: 1.5rem;
}
.faqs__accordion-container .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.faqs__accordion-container .accordion-body {
  font-family: "LTSuperior-Light";
  background-color: #2B2B2B;
  color: white;
}
.faqs__accordion-container .accordion-item {
  border: none;
  background-color: #2B2B2B;
}
@media (max-width: 1025px) {
  .faqs__accordion-container .accordion {
    width: 80%;
  }
}

.navbar {
  width: 100%;
  height: 140px;
  border-bottom: 1px solid white;
  position: absolute;
  top: 0;
  z-index: 99;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.navbar__center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  border-top: none;
  border-bottom: none;
  height: 100%;
}

.navbar__center-col img {
  width: 60%;
}

.navbar__menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navbar__menu-container p {
  font-size: 2rem;
  color: white;
  margin: 0;
}

.navbar__menu-container__menu {
  width: 60px;
  height: 23px;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.navbar__menu-container__menu span {
  height: 4px;
  transition: all 0.3s ease;
}

.btn {
  background: transparent;
  border: 1px solid white;
  border-radius: 40px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: white;
  font-size: 1.2rem;
  font-family: "Superior-Regular", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.fixed-button {
  max-width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    height: 100px;
    border-bottom: 2px solid rgb(5, 4, 4);
  }
  .navbar__center-col {
    border: 2px solid rgb(5, 4, 4);
    border-top: none;
    border-bottom: none;
  }
  .navbar__center-col img {
    width: 80%;
    max-height: 50px;
    filter: invert(1);
  }
  .navbar__center-col img {
    width: 80%;
    max-height: 50px;
    filter: invert(1);
  }
  .btn {
    background: transparent;
    border: none;
    padding: 0;
    width: auto;
  }
  .btn.cart span {
    display: none;
  }
  .btn.cart img.cart-image {
    display: block;
    width: 40px;
    height: auto;
  }
  .navbar__menu-container__menu {
    width: 40px;
  }
  .navbar__menu-container {
    width: 40px;
  }
  .btn {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
  .btn span {
    font-size: 0.9rem;
  }
  .navbar__menu-container p {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .btn span {
    display: none;
  }
  .navbar__menu-container p {
    display: none !important;
  }
}
.ubi_nav {
  background-color: transparent;
  border-radius: 35px;
  width: 60%;
  color: #ffffff;
  border: 2px solid #fff;
  padding: 1rem;
  font-size: 1.7rem;
  text-decoration: none;
}

.logo_nav {
  height: auto;
  width: 53%;
}

@media (max-width: 768px) {
  .vista-blog .navbar {
    height: 100px;
    border-bottom: 2px solid white;
    background: rgba(0, 0, 0, 0.7);
  }
  .vista-blog .navbar__center-col {
    border: 2px solid white;
    border-top: none;
    border-bottom: none;
  }
  .vista-blog .navbar__center-col img {
    width: 80%;
    max-height: 50px;
    filter: invert(0);
  }
  .vista-blog .navbar__menu-container {
    width: 40px;
    filter: none;
  }
  .vista-blog .navbar__menu-container__menu span {
    background: white;
  }
  .vista-blog .btn {
    border: 1px solid white;
    color: white;
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  .vista-blog .btn span {
    font-size: 0.9rem;
  }
  .vista-blog .btn.cart img.cart-image {
    filter: brightness(0) invert(1);
  }
}
.vista-blog .navbar {
  width: 100%;
  height: 140px;
  border-bottom: 1px solid white;
  position: absolute;
  top: 0;
  z-index: 99;
  padding: 0;
  background: transparent;
  backdrop-filter: blur(6px);
}

.vista-blog .navbar__center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  border-top: none;
  border-bottom: none;
  height: 100%;
}

.vista-blog .navbar__center-col img {
  width: 60%;
  max-height: 60px;
}

.vista-blog .navbar__menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.vista-blog .navbar__menu-container p {
  font-size: 2rem;
  color: white;
  margin: 0;
}

.vista-blog .navbar__menu-container__menu {
  width: 60px;
  height: 23px;
  margin-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.vista-blog .navbar__menu-container__menu span {
  height: 4px;
  background: white;
  transition: all 0.3s ease;
}

.vista-blog .btn {
  background: transparent;
  border: 1px solid white;
  border-radius: 40px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: white;
  font-size: 1.2rem;
  font-family: "Superior-Regular", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.vista-blog .fixed-button {
  max-width: 100%;
}

.footer {
  width: 100%;
  background-color: #FE7C5A;
  padding-bottom: 40px;
}
.footer__first-column img {
  width: 190px;
}
.footer__content {
  width: 70%;
  max-width: 760px;
  padding-top: 3rem;
}
.footer__content a {
  display: block;
  color: white !important;
  font-family: "LTSuperior-Thin";
  font-size: 0.9rem;
  margin-bottom: 4px;
  text-decoration: none;
  text-align: left;
  line-height: 1.3;
}
.footer__content__column__title {
  font-family: "SupraW03-Demibold";
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: left;
  margin-bottom: 12px;
}
.footer__content__column__p {
  color: white;
  font-family: "LTSuperior-Thin";
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-align: left;
  max-width: 335px;
  line-height: 1.3;
}
.footer__last-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1025px) {
  .footer__last-column {
    align-items: flex-start;
  }
}

.nlinput {
  background-color: transparent;
  border-radius: 25px;
  width: 60%;
  color: #ffffff !important;
}

.btn_nl {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 1rem;
}

.rss_footer {
  margin-right: 15px;
}

.form-control:focus {
  background-color: transparent !important;
}

#cookieConsent {
  background-color: #262626;
  min-height: 26px;
  font-size: 14px;
  color: #fff;
  line-height: 26px;
  padding: 15px 0 12px 30px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 9999;
}

#cookieConsent a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

#closeCookieConsent {
  float: right;
  display: inline-block;
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: -15px 0 0 0;
  font-weight: bold;
  font-size: 1.3rem;
}

#cookieConsent p {
  letter-spacing: 1.5px;
  margin: 0;
}

#closeCookieConsent:hover {
  color: rgba(255, 255, 255, 0.7725490196);
}

#cookieConsent a.cookieConsentOK {
  background-color: #FE7C5A;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  padding: 2px 20px;
  cursor: pointer;
  float: right;
  margin: 0 60px 0 10px;
  font-weight: bold;
  border: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  #cookieConsent a.cookieConsentOK {
    margin: 0 90px 0 10px;
  }
}

#cookieConsent a.cookieConsentOK:hover {
  background-color: #403F3F;
}

.navbar__menu {
  visibility: hidden;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #2B2B2B;
  z-index: 99;
  transform: translateX(100%);
  transition: background-color 0.3s ease;
}
.navbar__menu__is-active {
  visibility: visible;
}
.navbar__menu ul {
  padding: 0 20% 10%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style: none;
}
@media (max-width: 1025px) {
  .navbar__menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .navbar__menu ul {
    padding: 0;
  }
}

.navbar__menu ul li {
  position: relative;
}
.navbar__menu ul li a {
  all: unset;
  cursor: pointer;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 6rem;
  font-family: "SupraW03-Black-Extended";
  color: inherit;
  transition: opacity 0.3s ease;
}
.navbar__menu ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.navbar__menu ul li a:hover {
  opacity: 1;
}
.navbar__menu ul li a:hover::after {
  opacity: 1;
  background-image: var(--bg-image);
}
@media (max-width: 1025px) {
  .navbar__menu ul li a {
    font-size: 2rem;
  }
}

.navbar__menu__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2%;
}
.navbar__menu__logo img {
  width: 120px;
}
.navbar__menu__logo .navbar__menu__close {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  padding: 30px 35px;
}
@media (max-width: 1025px) {
  .navbar__menu__logo {
    width: 100%;
    padding: 15% 0;
  }
  .navbar__menu__logo .navbar__menu__close {
    border: none;
    top: 25%;
    right: unset;
    left: 2%;
    font-size: 3.5rem;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/*# sourceMappingURL=main.css.map */
