/* **************** VARIABLES **************** */
:root {
  /* Colores Generales */
  --clr-light: rgb(240, 240, 240);
  --clr-mid: rgba(225,225,232,255);
  --clr-dark: rgb(34, 34, 34);
  /* Colores Gradientes*/
  --gradient-clr-1: rgba(125, 233, 255, 1);
  --gradient-clr-2: rgba(164,182,245,1);
  --gradient-clr-3: rgba(219, 189, 254, 1);
  /* Colores Links */
  --clr-link: rgb(39, 146, 203);
  --clr-link-hover: rgba(164,182,245,1);
  --clr-link-hover-dark: rgb(51, 74, 159);
}
/* **************** TIPOGRAFÍA **************** */
/* ADIEU */
@font-face {
  font-family: 'Adieu';
  src: url(../fonts/adieu-regular.otf);
}
@font-face {
  font-family: 'Adieu Bold';
  src: url(../fonts/adieu-bold.otf);
}
@font-face {
  font-family: 'Adieu Slanted';
  src: url(../fonts/adieu-boldslanted.otf);
}
@font-face {
  font-family: 'Adieu Black';
  src: url(../fonts/adieu-black.otf);
}
/* APERCU */
@font-face {
  font-family: 'Apercu Light';
  src: url(../fonts/apercu.otf);
}
@font-face {
  font-family: 'Apercu';
  src: url(../fonts/apercu-medium.otf);
}
@font-face {
  font-family: 'Gotham';
  src: url(../fonts/gotham-medium.otf);
}
@font-face {
  font-family: 'Gotham Bold';
  src: url(../fonts/gotham-bold.otf);
}
@font-face {
  font-family: 'Gotham Book';
  src: url(../fonts/gotham-book.otf);
}
/* MONUMENT */
@font-face {
  font-family: 'Monument';
  src: url(../fonts/monumentextended-regular.otf);
}
@font-face {
  font-family: 'Monument Black';
  src: url(../fonts/monumentextended-ultrabold.otf);
}
/* MYRIAD */
@font-face {
  font-family: 'Myriad';
  src: url(../fonts/myriadpro-regular.otf);
  font-weight: normal;
}
/* **************** MAIN STYLES **************** */
*, *::after, *::before {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Gotham';
  color: var(--clr-dark);
  width: 100vw;
  overflow-x: hidden;
}
.main-container {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
}
a, .link {
  cursor: pointer;
  color: var(--clr-link);
}
a:hover, .link:hover {
  color: var(--clr-link-hover);
}
a > i {
  color: var(--clr-light);
}
a > i:hover {
  color: var(--clr-link-hover);
}
.button {
  background-color: white;
  border-radius: 45px;
  margin: 3rem 1rem;
  padding: 1rem 3rem;
  font-family: 'Gotham';
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.button: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;
}
/* ********* OVERRIDE BOOTSTRAP STYLES ********* */
a:hover, a:focus {
  text-decoration: none;
}
.panel {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: 0;
}
.modal__footer {
  border-top: 0;
}

/* *************** HEADER STYLES *************** */
header {
  background-color: rgba(176, 176, 176, 0.5);
  display: flex;
  position: fixed;
  top: 0;
  align-items: center;
  width: 100%;
  height: 4rem;
  z-index: 999;
  padding: 0 10%;
  color: white;
}
.menu-expanded {
  border-bottom: 1px solid black;
  background-color: white;
  color: black;
}
header h1 {
  font-family: 'Adieu Bold';
  font-size: 3rem;
}
.nav-icon {
  font-size: 2rem;
  margin-left: 2rem;
  transition: scale 0.1s ease-in;
}
.nav-icon:hover {
  scale: 1.05;
}
nav {
  flex-grow: 1;
  text-align: right;
}
.nav-menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 4rem;
  left: 0;
  padding-top: 2rem;
  text-align: center;
  background-color: white;
  color: black;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: top;
  transition: all .1s ease-out;
}
.nav-menu.expand {
  transform: scale(1, 1);
  opacity: 1;
  transition: transform .2s ease-in;
}
.nav-menu__ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.nav-menu__logo {
  pointer-events: none;
  width: 30rem;
  position: absolute;
  left: -12rem;
  top: calc(50vh - 19rem); /* half image height - margin */
}
.nav-menu__ul .ul__title {
  font-family: 'Gotham Bold';
  font-size: 1rem;
}
.nav-menu__ul .ul__line {
  background-color: var(--clr-dark);
  width: 3.5rem;
  height: 1px;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.nav-menu__ul li {
  font-family: 'Adieu Black';
  font-size: 3rem;
  padding-top: 1rem;
}
.nav-menu__ul .ul__link {
  color: var(--clr-dark);
}
.nav-menu__ul .ul__link:hover {
  text-shadow: 5px 5px 5px var(--clr-mid);
}
.nav-menu__ul .ul__icon {
  color: var(--clr-dark);
  font-size: 2.5rem;
  padding-top: 3rem;
}
.nav-menu__close-button {
  border: 1px solid black;
}

/* *************** HERO STYLES *************** */
.hero__carousel {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}
.carousel__image {
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
}
.carousel__track-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.carousel__track {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 100%;
  transition: transform 250ms ease-in;
}
.carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.carousel__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel__overlay .overlay__gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 4rem;
  opacity: .8;
  z-index: 1;
}
.overlay__text {
  position: relative;
  margin-top: calc(50vh - 10rem);
  margin-left: 20rem;
  z-index: 4;
}
.overlay__text-slide {
  font-family: 'Adieu Black';
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: .85;
  display: none;
}
.current-text {
  display: block;
}
.overlay__text-slide .text-slide__first-line {
  font-size: 6rem;
  /* outline usando text-shadow */
  color: white;
  text-shadow:
    -1px -1px 0 var(--clr-dark),
    1px -1px 0 var(--clr-dark),
    -1px 1px 0 var(--clr-dark),
    1px 1px 0 var(--clr-dark);
}
/* outline usando text-stroke si está disponible */
@supports((text-stroke: 2px black) or (-webkit-text-stroke: 2px black)) {
  .overlay__text-slide .text-slide__first-line {
    color: transparent;
    -webkit-text-stroke: 2px var(--clr-dark);
    text-stroke: 2px var(--clr-dark);
    text-shadow: none;
  }
}
.overlay__text-slide .second-line {
  font-size: 7rem;
}
.overlay__text .title {
  font-family: 'Adieu';
  font-size: 2.3rem;
  margin-bottom: 1rem;
  padding-left: .5rem;
}
.overlay__text .body {
  font-family: 'Gotham';
  font-weight: 500;
  line-height: 1.5;
}
.overlay__logo {
  width: 30rem;
  position: absolute;
  left: -12rem;
  top: calc(50vh - 12rem);
  z-index: 4;
}
.overlay__circular-text img {
  position: absolute;
  right: 7rem;
  top: 7rem;
  width: 150px;
  z-index: 4;
}
.overlay__buttons {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20rem;
  z-index: 4;
}

/* ***************** OFERTA MIA ***************** */
.section-oferta {
  text-align: center;
}
.section-oferta .promo {
  position: relative;
  width: 1000px;
  left: 40%;
  top: 8rem;
  background-color: var(--gradient-clr-1);
  color: white;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  padding: .5rem;
  transform: rotate(45deg);
}
.section-oferta .promo p {
  font-family: 'Adieu Bold';
}
.mia-logo {
  margin-top: -2rem;
  width: 180px;
  margin: 1rem;
}
.mercado-text {
  width: 500px;
  line-height: 1.2;
}
.mercado-text h2 {
  font-family: 'Adieu Bold';
  font-size: 3.5rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.mercado-text .text-body {
  font-family: 'Apercu Light';
  text-transform: none;
}
.info-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
  align-items: center;
  justify-content: center;
  margin: 2rem;
}
.info-card {
  display: flex;
  flex-direction: column;
  margin: 1rem;
  width: 300px;
  height: 280px;
  text-transform: uppercase;
}
.info-card__background {
  padding: 2rem;
  width: 100%;
  height: 100%;
}
.info-card--almacen .info-card__background,
.info-card--servicios .info-card__background {
  background: rgb(175,118,240);
  background: linear-gradient(148deg, var(--gradient-clr-3) 0%, var(--gradient-clr-2) 50%, var(--gradient-clr-1) 100%);
}
.info-card--bares .info-card__background,
.info-card--tiendas .info-card__background {
  background: rgb(0,212,255);
  background: linear-gradient(148deg, var(--gradient-clr-1) 0%, var(--gradient-clr-2) 50%, var(--gradient-clr-3) 100%);
}
.info-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 0 1rem;
  cursor: pointer;
  transition: transform .1s ease-out;
}
.info-card__inner:hover {
  transform: scale(1.01);
  transition: transform .1s ease-in;
}
.info-card__inner:hover > .link {
  color: #428bca;
}
.info-card-icon {
  height: 100px;
  margin: .5rem;
}
.info-card__title {
  color: var(--clr-dark);
  font-weight: bold;
  line-height: 1.5;
}
.info-card__line {
  position: absolute;
  bottom: 1rem;
  border: 1px solid black;
  width: 1.5rem;
  margin: 1rem;
}
.info-card__link {
  position: absolute;
  bottom: .5rem;
  font-family: 'Apercu Light';
}

/* ************ CÓMO COMPRAR STYLES ************ */
.section-comprar {
  flex-direction: row;
  height: 100vh;
}
.panel {
  width: 50%;
  height: 100%;
  padding-top: 6rem;
}
.section-comprar .panel--left {
  position: relative;
}
.section-comprar .panel--left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/como-comprar-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  filter: brightness(70%);
}
.section-comprar .panel__content {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  color: white;
}
.panel__content h2 {
  display: flex;
  font-family: 'Adieu Black';
  text-align: right;
  text-transform: uppercase;
}
.panel__content h2 p:first-child {
  width: 200px;
  font-size: 1.2rem;
  text-align: right;
  padding-top: 1rem;
  padding-right: .7rem;
}
.panel__content h2 p:last-child {
  font-size: 5rem;
  padding-right: 7rem;
}
.line-comprar {
  border: 1px solid white;
  width: 3rem;
  margin: 1rem;
}
.comprar-logo {
  margin: 4rem;
  width: 50%;
}
.section-comprar .panel-right {
  background: var(--gradient-clr-3);
  background: linear-gradient(220deg, var(--gradient-clr-3) 0%, var(--gradient-clr-2) 50%, var(--gradient-clr-1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem 5rem;
}
.panel--right__step {
  font-family: 'Monument';
  font-size: 4rem;
  padding-top: 2rem;
}
.panel--right__subtitle {
  font-size: 1.2rem;
  padding-top: .7rem;
}
.panel--right__description {
  color: var(--clr-dark);
  font-family: 'Apercu Light';
  font-size: 1rem;
  padding-top: 1rem;
}

/* ********** DONDE ENCONTRARNOS STYLES ********** */
.section-encontrar {
  text-transform: uppercase;
  height: 100vh;
  padding: 5rem 0 3rem;
}
.section-encontrar h2 {
  font-family: 'Adieu Bold';
  font-size: 3rem;
}
.encontrar__buttons {
  display: flex;
}
.encontrar__buttons .button {
  border: 1px solid var(--clr-dark);
  border-radius: 40px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.encontrar__buttons .button:hover {
  box-shadow: 2px 2px 5px 2px var(--clr-mid);
}
/* ************** Mapa MIA ************** */
.encontrar__mapa {
  position: relative;
  width: 700px;
  height: 400px;
}
.folium-map {
  top: 0;
  bottom: 0;
  right: 0;
  left:0;
  height: 400px;
}

/* ******** PREGUNTAS FRECUENTES STYLES ******** */
.section-preguntas {
  background-color: var(--clr-mid);
  min-height: 100vh;
}
.preguntas-icon {
  border: 1px solid black;
  border-radius: 50%;
  padding: 1rem;
  font-size: 2rem;
}
.section-preguntas__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 500px;
  padding: 1rem;
  margin-bottom: 2rem;
}
.section-preguntas__text h2 {
  font-family: 'Adieu Bold';
  font-size: 2rem;
  text-transform: uppercase;
  margin: 1rem 1rem 2rem;
}
.section-preguntas__text p {
  font-family: 'Apercu Light';
}
.section-preguntas__accordion {
  width: 60%;
  margin-bottom: 3rem;
}
.accordion__question {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.question-display {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid black;
  padding: 1rem .5rem;
  cursor: default;
  transition: 0.4s;
}
.active, .question-display:hover {
  background-color: rgba(210,210,215,255);
}
.accordion__question:last-child {
  border-bottom: 1px solid black;
}
.question-display .question {
  font-family: 'Gotham Bold';
  text-transform: uppercase;
}
.section-preguntas__accordion .expand-text {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.expand-text p {
  font-family: 'Apercu Light';
  padding: 2rem .5rem;
}

/* *************** CONTACTO STYLES *************** */
.section-contacto {
  height: 60vh;
  font-family: 'Gotham';
  text-align: center;
  line-height: 1.5;
  background: var(--gradient-clr-3);
  background: linear-gradient(220deg, var(--gradient-clr-3) 0%, var(--gradient-clr-2) 50%, var(--gradient-clr-1) 100%);
}
.section-contacto h2 {
  font-family: 'Adieu Bold';
  font-size: 3rem;
  text-transform: uppercase;
}
.line-contacto {
  border: 1px solid black;
  width: 3rem;
  margin: 2rem;
}
.section-contacto-subtitle {
  font-family: 'Adieu Bold';
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.section-contacto-text {
  width: 500px;
}
.contact-type {
  font-family: 'Apercu Light';
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.contact-mail {
  font-size: 1.2rem;
  font-weight: bold;
}
.contact-mail > a:hover {
  color: var(--clr-link-hover-dark);
}

/* **************** FOOTER STYLES **************** */
footer {
  display: flex;
  min-height: 40vh;
  background-color: black;
  color: white;
  padding: 2rem 10vw;
  font-family: 'Apercu Light';
}
.footer-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 3rem;
  width: 50%;
}
.footer-panel .footer-title {
  font-family: 'Adieu Bold';
  font-size: 1.2rem;
  text-transform: uppercase;
}
.footer-panel p {
  font-size: 1rem;
  line-height: 1.5;
  padding: .5rem 0;
}
.footer-subtitle {
  font-family: 'Adieu Bold';
  text-transform: uppercase;
}
footer .panel-right {
  padding-left: 5rem;
}
.footer-icon {
  font-size: 1.5rem;
  padding: .5rem 0;
}
.footer__logo {
  width: 250px;
}
footer .panel-right {
  border-left: 1px solid white;
}

/* **************** MODALES **************** */
/* ESTILOS GENERALES */
.modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gradient-clr-3);
  background: linear-gradient(220deg, var(--gradient-clr-3) 0%, var(--gradient-clr-2) 50%, var(--gradient-clr-1) 100%);
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  top: 0;
  left: 0;
  transform: translateX(200%);
  transition: transform 0.3s ease-out;
  z-index: 1000;
}
.modal.active {
  transform: translateX(0%);
}
.modal .close {
  position: absolute;
  top: 1rem;
  right: 3rem;
  text-align: center;
  text-shadow: none;
  opacity: 1;
}
.modal .close i {
  font-size: 3rem;
  color: var(--clr-dark);
}
.modal .modal__title {
  width: 100%;
  text-align: center;
}
.modal__title h1 {
  font-family: "Adieu Bold";
  font-size: 3rem;
  text-transform: uppercase;
  padding: 2rem;
}
.modal .modal__text,
.modal .modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  padding: 5rem 1rem;
  line-height: 1.5;
  text-align: center;
  background-color: var(--clr-dark);
  color: var(--clr-light);
}
.modal .footer__logo {
  width: 200px;
}
.modal-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-mid);
  width: 100%;
  padding-top: 3rem;
}
.modal-list .list-icon {
  display: flex;
  width: 60%;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 5rem;
}
.modal-list .list-icon img {
  width: 5rem;
  margin-right: 1rem;
}

/* ********** MODAL: CONOCÉ MIA STYLES ********** */
.modal-conoce {
  justify-content: space-between;
}
.modal-conoce .conoce-panels {
  display: flex;
  position: relative;
}
.conoce-panels .panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  min-height: calc(100vh - 130px);
}
.conoce-panels .panel--left {
  background-color: var(--clr-dark);
  color: white;
  padding-top: 3rem;
}
.conoce-panels .panel--left p {
  font-family: 'Apercu Light';
  font-size: 1.2rem;
  padding: 0 5rem;
}
.conoce-panels .panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding-top: 0;
}
.conoce-panels .panel-right img {
  width: 100%;
}

/* ********* MODAL: BARES Y RESTAURANTES ********* */
.bares-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-mid);
  width: 100vw;
}
.bares-list .list-item {
  border-bottom: 1px solid black;
  display: flex;
  width: 100vw;
}
.list-item .item__column {
  display: flex;
  height: 100%;
  overflow: hidden;
}
.list-item .item__text {
  width: 100%;
}
.list-item .item__image {
  flex-shrink: 0;
  height: 500px;
  width: 500px;
  margin: .5rem 2rem .5rem .5rem;
}
.bares-list .item__text {
  display: flex;
  flex-direction: column;
  padding: 5rem;
}
.bares-list .item__title {
  display: flex;
  align-items: center;
}
.bares-list .item__title img {
  width: 3rem;
  margin-right: 1rem;
}
.bares-list .item__title h3 {
  font-family: "Adieu Bold";
  font-size: 1.2rem;
  text-transform: uppercase;
}
.bares-list .item__text i {
  font-size: 1.5rem;
  padding-right: 1rem;
}
.item__info {
  display: flex;
  padding-top: 3rem;
  line-height: 1.5;
}
.info__icons {
  text-align: center;
}
.info__text {
  padding-top: .5rem;
}

/* ******* CAROUSEL  ********/
.modal-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.modal-carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.modal-carousel__button--left {
  left: 10px;
}
.modal-carousel__button--right {
  right: 10px;
}
.modal-carousel__button i {
  color: var(--clr-light);
  font-size: 2rem;
}
.modal-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-carousel__track-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.modal-carousel__track {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 100%;
  transition: transform 250ms ease-in;
}
.modal-carousel__slide {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
.modal-carousel__nav {
  position: absolute;
  width: 100%;
  bottom: 1rem;
  display: flex;
  justify-content: center;
}
.modal-carousel__indicator {
  border: 0;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  background: rgba(0,0,0,.5);
  margin: 1rem;
}
.modal-carousel__indicator.current-slide {
  background: rgba(0,0,0,1);
}

/* ***** MODAL: SERVICIOS y MODAL: TIENDAS ***** */
.modal-list-accordion {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin-bottom: 3rem;
}
.modal-list-accordion .expand-text {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion__service {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.service-display {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid black;
  padding: 1rem .5rem;
  cursor: default;
  transition: 0.4s;
}
.active, .service-display:hover {
  background-color: rgba(210,210,215,255);
}
.accordion__service:last-child {
  border-bottom: 1px solid black;
}
.service-display .service-name {
  font-family: 'Gotham Bold';
  text-transform: uppercase;
}
.expand-text .list-item {
  font-family: 'Apercu Light';
  padding: .5rem 5rem 1rem;
  border-top: 1px solid black;
}
.expand-text .list-item span {
  font-family: 'Apercu';
  font-weight: bold;
}


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

/* ------------- BIG MONITOR UP ------------- */
@media screen and (min-width: 1800px) {
  html {
    font-size: 1.5rem;
  }
  /* HERO */
  .circular-text img {
    width: 200px;
    left: calc(100% - 200px - 6rem);
  }
  /* OFERTA MIA */
  .section-oferta {
    height: 100vh;
  }
  .mia-logo {
    margin-top: -3rem;
    width: 230px;
  }
  .mercado-text {
    width: 750px;
  }
  .section-oferta .promo {
    top: 3.3rem;
  }
  .info-card {
    width: 380px;
    height: 320px;
  }
  .info-card__background {
    padding: 1.5rem;
  }
  .info-card-icon {
    margin-top: 0;
    height: 120px;
  }
  .info-card-title,
  .info-card__link {
    font-size: .7rem;
  }
  /* CÓMO COMPRAR CON MIA */
  .comprar-logo {
    width: 45%;
  }
  .panel__content h2 p:first-child {
    width: 270px;
  }
  /* DÓNDE ENCONTRARNOS */
  .encontrar__buttons .button {
    max-width: 350px;
    padding: .5rem 2rem;
  }
  .encontrar__mapa {
    width: 1000px;
    height: 700px;
  }
  /* CONTACTO */
  .section-contacto h2 {
    font-size: 2.5rem;
  }
  .line-contacto {
    margin: 1rem;
  }
  .section-contacto-text {
    width: 700px;
  }
  .contact-phone,
  .contact-mail {
    font-size: 1.2rem;
  }
  /* FOOTER */
  .footer-panel .panel-title {
    font-size: 1rem;
  }
  .footer-panel p {
    font-size: .7rem;
  }
  .footer__logo {
    width: 400px;
  }
  /* MODALES */
  .modal__title h1 {
    padding: 1rem;
  }
}

/* ------------- MEDIUM MONITOR DOWN ------------- */
@media screen and (max-width: 1400px) {

}

/* ------------- TABLET LANDSCAPE DOWN ------------- */
@media screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
  /* HERO */
  .overlay__circular-text img {
    width: 150px;
  }
  /* OFERTA MIA */
  .info-card {
    height: 250px;
  }
  /* CÓMO COMPRAR */
  .panel__content h2 p:first-child {
    font-size: 1.5rem;
  }
  .panel__content h2 p:last-child {
    font-size: 6rem;
    padding-right: 5rem;
  }
  .section-comprar .panel-right {
    padding-top: 5rem;
  }
  .comprar-logo {
    width: 75%;
  }
  .panel--right__step {
    font-size: 6rem;
  }
  .panel--right__subtitle {
    font-size: 1.5rem;
  }
  .panel--right__description {
    font-size: 1.2rem;
  }
  /* PREGUNTAS FRECUENTES */
  .section-preguntas {
    justify-content: flex-start;
    padding-top: 3rem;
  }
}
/* ------------- TABLET PORTRAIT DOWN ------------- */
@media screen and (max-width: 900px) {
  html {
    font-size: 14px;
  }
  .button {
    font-size: 1rem;
  }
  /* HERO */
  .carousel__image {
    height: 100vh;
    width: auto;
  }
  .overlay__logo {
    left: -15rem;
    top: calc(50vh - 17rem);
  }
  .overlay__circular-text img {
    width: 150px;
    top: 10rem;
  }
  .overlay__text {
    margin-left: 9rem;
  }
  .overlay__buttons {
    margin-left: 9rem;
  }
  /* OFERTA MIA */
  .section-oferta {
    height: auto;
  }
  .section-oferta .promo {
    left: 30%;
    top: 6rem;
    padding: .5rem 15rem;
  }
  .mercado-text {
    padding: 1rem 3rem;
    width: auto;
  }
  .mercado-text p {
    font-size: 1.2rem;
  }
  .info-card {
    margin: 1rem;
    width: 300px;
    height: 300px;
  }
  .info-card-icon {
    height: 120px;
  }
  .info-card-title {
    font-size: 1.2rem;
    line-height: 1;
  }
  /* COMO COMPRAR */
  .section-comprar {
    height: auto;
    flex-direction: column;
  }
  .section-comprar .panel {
    width: 100%;
  }
  .section-comprar .panel-right {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  /* DÓNDE ENCONTRARNOS */
  .section-encontrar {
    height: auto;
    justify-content: flex-start;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .section-encontrar h2 {
    font-size: 2rem;
  }
  .encontrar__buttons .button {
    width: 210px;
  }
  .encontrar__mapa {
    height: 500px;
  }
 /* PREGUNTAS FRECUENTES */
 .section-preguntas {
   height: auto;
   min-height: auto;
   justify-content: flex-start;
   padding-top: 4rem;
   padding-bottom: 3rem;
 }
 /* CONTACTO */
 .section-contacto {
   height: auto;
   justify-content: flex-start;
   padding-top: 4rem;
   padding-bottom: 3rem;
 }
 /* FOOTER */
 footer {
   padding: 2rem;
 }
 .footer-panel {
   padding: 0;
 }
 .footer__logo {
   width: 250px;
 }
 /* MODALES */
 .modal__title h1 {
   font-size: 2rem;
 }
 .conoce-panels {
   flex-direction: column;
 }
 .conoce-panels .panel {
   width: 100%;
   min-height: auto;
 }
 .conoce-panels .panel--left p {
   padding: 3rem 5rem;
 }
 .modal .modal__text,
 .modal .modal__footer {
   padding: 3rem 1rem;
 }
 .bares-list .list-item {
   flex-direction: column;
 }
 .list-item .item__image {
   width: 100vw;
   height: 100vw;
   margin: 0;
 }
 .item__text {
   order: 2;
 }
 .item__image {
   order: 1;
 }
 .modal-carousel__button i {
   font-size: 3rem;
 }
}
/* ------------- MOBILE DEVICES DOWN ------------- */
@media screen and (max-width: 599px) {
  html {
    font-size: 12px;
  }
  .button {
    font-size: 1rem;
    margin: 1rem;
    padding: 1rem;
  }
  /* HEADER */
  header {
    width: 100vw;
    padding: 0 1rem;
  }
  .nav-icons {
    margin-left: 1rem;
  }
  .nav-menu__ul .ul__line {
    margin-bottom: 1rem;
  }
  .nav-menu__ul li {
    font-size: 2rem;
  }
  /* HERO */
  .carousel__image {
    height: 100vh;
    width: auto;
  }
  .overlay__logo {
    width: 350px;
    left: -200px;
  }
  .overlay__circular-text img {
    width: 100px;
    right: 1rem;
    top: 5rem;
  }
  .overlay__text {
    margin-left: 2rem;
    margin-top: calc(50vh - 5rem);
  }
  .overlay__buttons {
    margin-top: 2rem;
    margin-left: 2rem;
  }
  .overlay__text-slide .text-slide__first-line {
    font-size: 3rem;
    margin-bottom: .5rem;
  }
  .overlay__text-slide .second-line {
    font-size: 3.2rem;
  }
  .overlay__text .title {
    font-size: 1.5rem;
  }
  .carrousel-selectors {
    bottom: auto;
  }
  /* OFERTA MIA */
  .section-oferta .promo {
    top: 4rem;
    left: 25%;
    padding: .5rem 3rem;
  }
  .mia-logo {
    margin-top: 3rem;
  }
  .mercado-text {
    padding: 1rem;
    width: auto;
  }
  .mercado-text h2 {
    font-size: 3rem;
  }
  .mercado-text p {
    font-size: 1rem;
  }
  .info-card {
    width: 280px;
    height: 280px;
    margin: 1rem;
  }
  .info-card-icon {
    height: 150px;
  }
  .info-card__inner {
    justify-content: flex-start;
  }
  /* CÓMO COMPRAR CON MIA */
  .panel__content h2 {
    flex-direction: column;
    text-align: center;
  }
  .panel__content h2 p:first-child {
    width: auto;
    text-align: center;
    font-size: 1.5rem;
  }
  .panel__content h2 p:last-child {
    font-size: 5rem;
    padding-right: 0;
  }
  .comprar-logo {
    width: 70%;
  }
  .section-comprar {
    flex-direction: column;
    height: auto;
  }
  .section-comprar .panel {
    width: 100%;
    height: 100vh;
  }
  .section-comprar .panel-right {
    padding: 1rem;
    padding-bottom: 4rem;
  }
  .panel--right__step {
    font-size: 4rem;
  } 
  /* DÓNDE ENCONTRARNOS */
  .section-encontrar {
    text-align: center;
    height: auto;
  }
  .section-encontrar h2 {
    font-size: 1.5rem;
    padding-top: 3rem;
  }
  .encontrar__buttons {
    margin: 2rem;
    flex-direction: column;
  }
  .encontrar__buttons .button {
    width: 200px;
    justify-content: center;
    margin: .5rem;
  }
  .encontrar__mapa {
    width: 90%;
    height: 90vh;
  }
  /* PREGUNTAS FRECUENTES */
  .section-preguntas__text {
    width: auto;
    padding: 3rem 1rem 1rem;
  }
  .section-preguntas__accordion {
    width: auto;
    padding: 1rem;
  }
  /* CONTACTO */
  .section-contacto h2 {
    font-size: 2rem;
  }
  .line-contacto {
    margin: 1rem;
  }
  .section-contacto-text {
    width: auto;
  }
  /* FOOTER */
  footer {
    flex-direction: column;
  }
  .footer-panel {
    width: 100%;
    padding: 0;
  }
  footer .panel-right {
    border: none;
    padding: 2rem 0 0;
  }
  .footer__logo {
    width: 200px;
    margin-bottom: 2rem;
  }
  /* MODALES */
  .modal .close {
    right: 1rem;
  }
  .modal .close i {
    font-size: 2rem;
  }
  .modal-list {
    padding: 1rem;
  }
  .modal-list .list-icon {
    margin: 0;
  }
  .modal-list .list-icon img {
    width: 50px;
    margin: 2rem;
  }
  .modal-list-accordion {
    width: 90%;
  }
  .expand-text .list-item {
    padding: .5rem;
  }
  /* CONOCÉ MIA */
  .modal__title h1 {
    font-size: 1.5rem;
  }
  .modal-conoce .panel {
    width: 100%;
    padding-top: 0;
  }
  .conoce-panels {
    flex-direction: column;
  }
  .conoce-panels .panel {
    min-height: auto;
  }
  .conoce-panels .panel--left p {
    padding: 3rem 2rem;
    font-size: 1rem;
    line-height: 1.2;
  }
  /* BARES Y RESTAURANTES */
  .modal .modal__text,
  .modal .modal__footer {
    padding: 3rem 1rem;
  }
  .bares-list .list-item {
    height: auto;
  }
  .bares-list .item__text {
    padding: 1rem .5rem;
  }
  .item__info {
    padding: 2rem .5rem;
  }
  .modal .footer__logo {
    width: 150px;
  }
}