/* **************** VARIABLES **************** */
:root {
  /* Colores Generales */
  --clr-light: rgb(255, 255, 255);
  --clr-mid-400: rgb(219, 219, 219);
  --clr-mid-600: rgb(203, 203, 203);
  --clr-dark: rgb(34, 34, 34);
  --clr-text: rgb(35, 31, 32);
  --clr-text-hover: rgb(68, 61, 63);
  /* Gradientes */
  --gradient-animated--1: linear-gradient(45deg, rgb(221, 179, 137, .3), rgb(128, 195, 172, .5), rgb(36, 199, 228, .3), rgb(192, 148, 243, .5), rgb(155, 189, 162, .3), rgb(234, 179, 137, .5));
  --gradient-animated--2: linear-gradient(90deg, rgb(221, 179, 137), rgb(128, 195, 172), rgb(36, 199, 228), rgb(192, 148, 243), rgb(155, 189, 162), rgb(234, 179, 137));
  --gradient-solid--1: linear-gradient(to bottom right, rgb(246, 220, 197), rgb(159, 207, 172));
  --gradient-solid--2: linear-gradient(to bottom right, rgb(106,204,228), rgb(192, 161, 239));
  --gradient-solid--3: linear-gradient(to bottom right, rgb(277,227,158), rgb(242, 208, 225));
  /* Colores Links */
  --clr-link: rgb(106, 204, 228);
  --clr-link-hover: rgb(210, 101, 254);
  /* Fuentes */
  --font-mia: 'Monument Extended Regular', sans-serif;
  --font-title: 'Adieu var(--clr-dark)', sans-serif;
  --font-main--bold: 'Gotham Bold', sans-serif;
  --font-main--medium: 'Gotham Medium', sans-serif;
  --font-main--light: 'Gotham Book', sans-serif;
  --font-body: 'Apercu Regular', sans-serif;
  /* Tamaños */
  --header-height: 50px;
}
/* **************** TIPOGRAFÍA **************** */
/* ADIEU */
@font-face {
  font-family: 'Adieu var(--clr-dark)';
  src: url(../fonts/adieu-black.otf);
}
/* APERCU */
@font-face {
  font-family: 'Apercu Regular';
  src: url(../fonts/apercu-medium.otf);
}
/* GOTHAM */
@font-face {
  font-family: 'Gotham Bold';
  src: url(../fonts/gotham-bold.otf);
}
@font-face {
  font-family: 'Gotham Medium';
  src: url(../fonts/gotham-medium.otf);
}
@font-face {
  font-family: 'Gotham Book';
  src: url(../fonts/gotham-book.otf);
}
/* MONUMENT */
@font-face {
  font-family: 'Monument Extended Regular';
  src: url(../fonts/monument-extended-regular.otf);
}
/* **************** MAIN STYLES **************** */
*, *::after, *::before {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--clr-dark);
  line-height: 1.3;
}
img {
  max-width: 100%;
}
a,
.btn,
.card__link {
  cursor: pointer;
  transition: all .2s ease;
}
a:hover,
.btn:hover,
.card__link:hover {
  color: var(--clr-link-hover);
  transition: all .2s ease;
}
.container {
  padding: 0 1rem;
}
.btn {
  font-family: var(--font-main--bold);
  text-transform: uppercase;
  text-align: center;
  padding: .8em 0;
  border: none;
  border-radius: 45px;
  width: 175px;
}
.btn:hover {
  box-shadow: 2px 2px 10px 1px var(--clr-dark);
  transition: box-shadow 0.2s ease-in-out;
}
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  overflow: hidden;
}
.line {
  height: 2px;
  background-color: var(--clr-dark);
}
/* ACCORDIONS */
.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  padding: 1rem;
}
.accordion .list-item {
  border-top: 1px solid var(--clr-dark);
}
.accordion .list-item:last-child {
  border-bottom: 1px solid var(--clr-dark);
}
.accordion .list__content-section {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.accordion .list__content-section p {
  padding: .7rem .2rem;
}
.accordion .list__content-section a {
  display: block;
  color: var(--clr-link);
}
.accordion .list__title-section:hover,
.accordion .list-item.active .list__title-section {
  background-color: var(--clr-mid-600);
}
.accordion .list__title-section {
  display: flex;
  justify-content: space-between;
  padding: .7rem .2rem;
}
.accordion .list__title-section h3 {
  font-family: var(--font-main--bold);
  text-transform: uppercase 
}
.accordion .btn--toggle-section {
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
}
.accordion .item__title {
  text-transform: uppercase;
}
/* ********* OVERRIDE BOOTSTRAP STYLES ********* */
/* a:hover, a:focus {
  text-decoration: none;
}
.panel {
  margin: 0;
  border: none;
  border-radius: 0;
}
.modal__footer {
  border-top: 0;
} */

/* *************** HEADER STYLES *************** */
.site-header {
  background-color: rgba(34, 34, 34, 0.5);
  color: var(--clr-light);
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
}
.site-header.menu--expanded {
  background-color: var(--clr-light);
  color: var(--clr-dark);
}
.header__title {
  font-family: var(--font-mia);
  font-size: 2.438rem;
}
.header__nav-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2.438rem;
  height: 17px;
  margin-top: -5px;
  margin-left: auto;
}
.header__nav-icon > div {
  width: 100%;
  height: 1px;
  background-color: var(--clr-light);
}
.header__cart {
  height: 20px;
  margin-top: -5px;
  margin-left: 20px;
}
.site-header.menu--expanded > .header__nav-icon > div {
  background-color: var(--clr-dark);
}
.site-header.menu--expanded > .header__cart {
  filter: invert();
}
.header__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: var(--header-height);
  left: 0;
  background-color: var(--clr-light);
  color: var(--clr-dark);
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: top;
  transition: all .1s ease-out;
  border-top: 2px solid var(--clr-dark);
}
.site-header.menu--expanded > .header__nav {
  transform: scale(1, 1);
  opacity: 1;
  transition: transform .2s ease-in;
}
.nav__line.line--top {
  width: 100%;
}
.nav__line.line--divider {
  width: 40px;
  margin: 0 auto;
}
.nav__title {
  font-family: var(--font-main--bold);
  margin-top: -3rem;
  margin-bottom: 1em;
}
.nav__ul {
  position: relative;
  padding-top: 2em;
  z-index: 1;
}
.nav__ul .ul__link {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.3rem;
  padding-bottom: .7em;
}
.nav__ul .ul__link--social {
  font-size: 1.5rem;
  margin-top: .5em;
}
.header__nav > .btn--secondary {
  background-color: var(--clr-light);
  border: 1px solid var(--clr-dark);
  margin-top: 1rem;
}
.header__nav > .img--hands {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(calc(-50% - var(--header-height)));
  width: 150px;
  z-index: 0;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* *************** HERO STYLES *************** */
.hero {
  width: 100%;
  height: 100vh;
  color: var(--clr-text);
  position: relative;
  overflow: hidden;
}
.hero__overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
  background: var(--gradient-animated--1);
  background-size: 400% 400%;
  animation: gradient 9.5s ease infinite;
  z-index: 1;
}
.hero__title {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}
.fading-texts {
  margin-top: 1rem;
  position: relative;
}
.fading-texts__slide {
  width: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}
.fading-texts__slide.current {
  opacity: 1;
}
.fading-texts__slide img {
  height: 75px;
  margin-bottom: .5rem;
}
.btn-group {
  margin-top: 175px;
}
.btn--primary {
  background-color: var(--clr-light);
  margin-top: 1rem;
}
.hero .img--hands,
.hero .img--circular-txt {
  display: none;
}
.carousel {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: absolute;
}
.carousel__track {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}
.carousel__slide {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  position: absolute;
  transition: all 0.5s;
}
.carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: 
    blur(1px)
    brightness(.5);
}
.carousel__indicators {
  display: flex;
  position: absolute;
  bottom: 1rem;
  isolation: isolate;
  z-index: 2;
}
.carousel__indicators > .indicator {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--clr-dark);
} 
.indicator.current {
  background-color: var(--clr-dark);
}
.indicator + .indicator {
  margin-left: 1rem;
}
/* *********** QUÉ ES STYLES *********** */
.que-es {
  display: flex;
  flex-direction: column;
}
.que-es .panel--right {
  display: none;
}
.que-es .panel--left {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--clr-mid-400);
  text-align: center;
}
.que-es .section__title {
  display: flex;
  justify-content: center;
  font-family: var(--font-title);
  text-transform: uppercase;
  margin-top: 3rem;
}
.que-es .section__title > span:first-child {
  font-size: 1.5rem;
  text-align: right;
  padding-top: 1em;
  padding-right: .5em;
}
.que-es .section__title > span:last-child {
  font-size: 5rem;
}
.que-es .line {
  width: 75px;
  height: 2px;
  background-color: var(--clr-text);
  margin: 1em auto 2em;
}
.que-es .section__subtitle {
  font-family: var(--font-main--bold);
  font-size: 1.3rem;
  margin-bottom: 2em;
}
.que-es .btn {
  margin: 3rem auto 5rem;
}
/* ******** DÓNDE COMPRAR STYLES ******** */
.donde-comprar {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donde-comprar .announcement {
  background: var(--gradient-solid--2);
  color: var(--clr-light);
  font-family: var(--font-title);
  font-size: .7rem;
  text-transform: uppercase;
  padding: .5rem 3rem;
  position: absolute;
  left: 0;
  top: 0;
  animation: gradient 5s ease infinite;
  transform: 
    rotate(-45deg) translate(-30%, -45%)
    ;
}
.donde-comprar .section__logo {
  width: 145px;
  margin: 3rem auto;
}
.donde-comprar .section__title {
  font-family: var(--font-title);
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1;
}
.donde-comprar .section__body {
  margin: 1rem auto;
}
.link-card {
  width: 100%;
  max-width: 285px;
  height: 250px;
  padding: 30px;
  margin: 20px auto;
  background: var(--clr-mid-400);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}
.donde-comprar .card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.link-card:nth-child(1) {
  background: var(--gradient-solid--1);
  background-size: 200% 400%;
}
.link-card:nth-child(2) {
  background: var(--gradient-solid--2);
  background-size: 200% 400%;
}
.link-card:nth-child(3) {
  background: var(--gradient-solid--3);
  background-size: 200% 400%;
}
.donde-comprar .card__content {
  background-color: var(--clr-light);
  padding: 1rem 0;
}
.donde-comprar .card__logo {
  height: 45px;
  justify-self: flex-start;
  margin: 1rem auto;
}
.link-card:first-child .card__logo {
  height: 55px;
  margin: 0 auto 1rem;
}
.donde-comprar .card__title {
  font-family: var(--font-main--medium);
  text-transform: uppercase;
  margin-top: .2rem;
  justify-self: center;
}
.link-card .line {
  background-color: var(--clr-text);
  height: 2px;
  width: 25px;
  margin-top: auto;
  margin-bottom: .5rem;
}
.donde-comprar .card__link {
  justify-self: flex-end;
}
/* ********** TESTIMONIALS STYLES ********** */
.testimoniales {
  background-color: var(--clr-text);
}
.testimoniales__intro {
  display: flex;
  align-items: center;
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--clr-light);
  padding: 3rem 0;
}
.testimoniales .section__carousel {
  padding: 25px 0;
}
.testimoniales > .container {
  padding-bottom: 1rem;
  position: relative;
}
.testimoniales .fading-texts {
  padding: 25px 0;
  margin-bottom: 2rem;
  position: relative;
  height: 75vh;
  max-width: 400px;
  background: var(--gradient-animated--2);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  z-index: 1;
  border-image-slice: 25;
  border-image-width: 20px;
  border-image-outset: 0px;
  border-image-repeat: round round;
  border-image-source: url("../recursos/iconografia/border-image-small.png");
  border-style: solid;
}
.testimoniales .fading-texts__slide {
  top: 50%;
  transform: translateY(calc(-50% + 25px));
  padding: 25px;
  text-align: center;
}
.testimoniales .section__icon {
  display: block;
  width: 50px;
  margin: 2rem auto;
}
.testimoniales .tesimonio__body {
  font-family: var(--font-main--medium);
  font-size: 1.375;
}
.testimoniales .testimonio__autor {
  font-family: var(--font-main--bold);
  font-size: 1.375;
  margin-top: 1rem;
}
.testimoniales .carousel__indicators {
  left: 50%;
  transform: translateX(-50%);
}
.testimoniales .carousel__indicators > .indicator {
  border: 1px solid var(--clr-light);
}
.testimoniales .carousel__indicators > .indicator.current {
  background-color: var(--clr-light);
}
/* ********** PREGUNTAS STYLES ********** */
.preguntas-frecuentes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-mid-400);
  padding: 3rem 0 5rem;
}
.preguntas-frecuentes .section__icon {
  width: 60px;
}
.preguntas-frecuentes .section__text {
  text-align: center;
  margin-bottom: 2rem;
}
.preguntas-frecuentes .section__title {
  font-family: var(--font-title);
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 1rem 1rem 2rem;
}
/* *********** CONTACTO STYLES *********** */
.contacto {
  background: var(--gradient-solid--2);
  text-align: center;
  padding: 3rem 0 6rem;
}
.contacto .section__title {
  font-family: var(--font-title);
  font-size: 2rem;
  text-transform: uppercase;
}
.contacto .line {
  background-color: var(--clr-text);
  height: 2px;
  width: 50px;  
  margin: 1rem auto 2rem;
}
.contacto .section__subtitle {
  font-family: var(--font-title);
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.contacto .section__body {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: .87rem;
  line-height: 2;
}
.contacto .section__body a {
  font-family: var(--font-main--bold);
  font-size: 1rem;
  text-transform: lowercase;
}
/* *********** FOOTER STYLES *********** */
.site-footer {
  background-color: var(--clr-dark);
  color: var(--clr-light);
  font-family: var(--font-main--light);
  font-size: .75rem;
}
.site-footer a {
  color: var(--clr-link);
}
.site-footer a:hover,
.site-footer a:active {
  color: var(--clr-link-hover);
}
.site-footer .social-link {
  display: inline-block;
  width: fit-content;
}
.footer__panel {
  padding: 1rem 0;
}
.footer__title, 
.footer__subtitle {
  text-transform: uppercase;
  margin: 2rem 0 1rem;
}
.footer__title {
  font-family: var(--font-title);
  font-size: 1.35rem;
}
.footer__subtitle {
  font-family: var(--font-main--bold);
}
.footer__logo {
  max-width: 250px;
}
.site-footer .social_icon {
  margin: 2rem 0;
  font-size: 2rem;
}

/* ************** MODALES ************** */
/* ESTILOS GENERALES */
.modal {
  background-color: var(--clr-mid-400);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  height: 100%;
  width: 100vw;
  overflow-y: scroll;
  transform: translateX(200%);
  transition: transform 0.3s ease-out;
  z-index: 1000;
}
.modal.active {
  transform: translateX(0%);
}
.modal__info a {
  color: var(--clr-link);
}
.modal__info a:hover,
.modal__info a:active {
  color: var(--clr-link-hover);
}
.btn--close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  text-align: center;
  text-shadow: none;
  opacity: 1;
}
.btn--close-modal img {
  width: 25px;
}
.modal__header {
  width: 100%;
  text-align: center;
  padding: 60px 1rem;
  background: var(--gradient-animated--2);
  background-size: 400%;
  animation: gradient 9.5s ease infinite;
}
.modal__title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1rem auto;
}
.modal__icon {
  width: 50px;
  margin: 2rem;
}
.modal__body {
  font-family: var(--font-body);
  flex: 1;
}
.modal__panels .panel {
  padding: 1rem;
}
.modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background-color: var(--clr-dark);
}
.modal__footer .logo {
  width: 200px;
}
/* MODAL CONOCE */
.modal-conoce .panel--left {
  background-color: var(--clr-dark);
  color: var(--clr-light);
}
.modal-conoce .modal__title {
  font-size: 3rem;
}
.modal-conoce .panel--right {
  background-color: var(--clr-light);
  text-align: center;
}
.modal-conoce .panel--right h3 {
  font-family: var(--font-main--bold);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.modal-conoce .panel--right .line {
  width: 60px;
  height: 2px;
  background-color: var(--clr-text);
  margin: 1rem auto 3rem;
}
.modal-conoce .panel--right img {
  max-width: 100%;
  margin: 1rem auto;
}
/* MODAL BARES */
.modal__info {
  background-color: var(--clr-dark);
  color: var(--clr-light);
  text-align: center;
  padding: 60px 1rem;
}
.modal-bares .item__title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.modal-bares .modal__list {
  background-color: var(--clr-light);
  display: grid;
}
.modal-bares .list-item {
  display: flex;
  flex-direction: column;
  padding: 0 0 1rem 0;
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}
.modal-bares .list-item:nth-child(odd) {
  background: var(--gradient-solid--1);
  background-size: 400%;
}
.modal-bares .list-item:nth-child(even) {
  background: var(--gradient-solid--2);
  background-size: 400%;
}
.modal__list .item__title {
  text-transform: uppercase;
}
.modal__list .item__title img {
  width: 50px;
  margin-right: 1rem;
}
.modal__list .item__title h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
}
.modal__list .col--txt {
  height: 100%;
  background-color: var(--clr-light);
  padding: 2em 1rem;
}
.modal__list .item__info p {
  position: relative;
  padding: 0 1rem 1rem 2rem;
}
.modal__list .item__info i {
  position: absolute;
  left: 0;
}
.modal .carousel {
  height: 285px;
  position: relative;
}
.modal .carousel__img {
  filter: none;
}
.modal .carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.modal .carousel__btn--prev {
  left: 10px;
}
.modal .carousel__btn--next {
  right: 10px;
}
.modal .carousel__button i {
  color: var(--clr-light);
  font-size: 2rem;
}
/* ***** MODAL: TIENDAS ***** */
.modal-tiendas .modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

/* ************************************* */
/* *********** MEDIA QUERIES *********** */
/* ************************************* */

/* TABLET PORTRAIT UP */
@media screen and (min-width: 600px) {
  .container {
    padding: 0 2rem;
  }
  .btn {
    font-size: 1.063rem;
  }
  .nav__ul .ul__link {
    font-size: 2.5rem;
    padding-bottom: .1em;
  }
  .header__nav > .btn--secondary {
    margin-top: 2.5rem;
  }
  .header__nav > .img--hands {
    left: -10%;
    width: 270px;
  }
  .hero__title {
    font-size: 4.7rem;
  }
  .hero .fading-texts__slide {
    display: flex;
    align-items: center;
  }
  .hero .fading-texts__slide img {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .hero .fading-texts__slide p {
    font-size: 1.375rem;
    max-width: 600px;
  }
  .btn-group .btn + .btn {
    margin-left: 1rem;
  }
  .testimoniales > .container {
    display: flex;
    justify-content: space-between;
  }
  .testimoniales .section__panel {
    width: 50%;
  }
  .testimoniales .fading-texts {
    height: 45vh;
  }
  .testimoniales .fading-texts__slide {
    padding: 25px 50px;
    text-align: center;
  }
  .testimoniales__intro {
    font-size: 1.5rem;
    padding-right: 2rem;
  }
  .site-footer {
    display: flex;
  }
  .site-footer.container {
    padding: 5rem 2rem;
  }
  .footer__panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  .site-footer .panel--left {
    width: 60%;
    padding-right: 3rem;
  }
  .site-footer .panel--right {
    width: 40%;
  } 
  .site-footer .footer__panel + .footer__panel {
    border-left: 2px solid var(--clr-light);
    padding-left: 3rem;
  }
  .footer__title {
    margin-top: 0;
  }
  .site-footer .social_icon {
    margin-bottom: 0;
  }
  .modal__header {
    padding: 60px 2rem;
  }
  .modal__panels .panel {
    padding: 2rem;
  }
  .modal-bares .modal__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    padding: 1em;
  }
  .modal-bares .list-item {
    padding: 1rem;
  }
}
/* TABLET LANDSCAPE UP */
@media screen and (min-width: 900px) {
  .container {
    padding: 0 3rem;
  }
  .btn-group {
    margin-top: 130px;
  }
  .hero__overlay .container {
    padding-left: 200px;
  }
  .hero .img--hands {
    display: block;
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 270px;
    opacity: .5;
  }
  .hero .img--circular-txt {
    display: block;
    position: absolute;
    right: 3rem;
    top: calc(3rem + var(--header-height));
    width: 150px;
    z-index: 1;
    animation: rotate-txt 25s linear infinite;
  }
  @keyframes rotate-txt {
    100% {
      transform: rotate(-360deg);
    }
  }
  .carousel__indicators {
    bottom: 2rem;
  }
  .que-es {
    flex-direction: row;
  }
  .que-es .section__panel {
    width: 50%;
  }
  .que-es .panel--right {
    display: flex;
    align-items: center;
    position: relative;
  }
  .que-es .panel--right > .panel__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../recursos/imagenes/mia_bg--1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--gradient-clr-1);
    filter: 
      contrast(.5)
      brightness(.5);
    z-index: 0;
  }
  .que-es .panel--right img {
    width: 300px;
    margin: 2rem auto;
    z-index: 1;
  }
  .donde-comprar {
    padding-bottom: 5rem;
  }
  .donde-comprar .section__body {
    max-width: 700px;
  }
  .section__links {
    display: flex;
    justify-content: space-between;
  }
  .link-card {
    margin: 2rem 0;
  }
  .testimoniales > .container {
    padding: 3rem;
  }
  .testimoniales .fading-texts {
    height: 60vh;
  }
  .modal__title {
    font-size: 2.5rem;
  }
  .modal__panels {
    display: flex;
  }
  .modal__panels .panel {
    padding: 3rem;
    flex: 1;
  }
  .modal__list .col--txt {
    padding: 3rem 2rem;
  }
  .modal-bares .list-item {
    padding: 1.5rem;
  }
  .site-footer.container {
    padding: 5rem 3rem;
  }
}
/* DESKTOP MEDIUM UP */
@media screen and (min-width: 1200px) {
  .container {
    padding: 0 150px;
  }
  .hero .img--hands,
  .header__nav .img--hands {
    left: 0;
  }
  .hero .img--circular-txt {
    right: 150px;
  }
  .hero__overlay .container {
    padding-left: 300px;
  }
  .testimoniales > .container {
    padding: 3rem 150px;
  }
  .modal-conoce .panel--left {
    padding: 5rem 5rem 3rem 150px;
  }
  .modal-bares .modal__list {
    padding: 2.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .modal-bares .list-item:nth-child(odd),
  .modal-bares .list-item:nth-child(even)
   {
    background: var(--gradient-solid--1);
    background-size: 400%;
  }
  .modal-bares .list-item:nth-child(3n + 2) {
    background: var(--gradient-solid--2);
    background-size: 400%;
  }
  .modal__footer {
    min-height: 350px;
  } 
  .site-footer.container {
    padding: 5rem 150px;
  }
  .site-footer .panel--left,
  .site-footer .panel--right {
    width: 50%;
  }
}