/* GENERAL */

* {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  margin: 0 0;
  /*outline: solid 1px red;*/
}

h1 {
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 60px;
  padding-top: 60px;
  text-shadow: 0 0 30px #FF4AB2;
}

h2 {
  color: #FF4AB2;
  text-align: center;
  font-weight: 800;
  padding-top: 30px;
  padding-bottom: 40px;
  font-size: 40px;
}

h3 {
  color: #FF4AB2;
  font-weight: 800;
  padding-bottom: 5px;
  font-size: 30px;
  max-width: 400px;
  text-align: center;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  padding-top: 20px;
}

.container-fluid {
  padding: 0 0;
}

section {
  opacity: 0;
  /* Oculto por defecto */
  transform: translateY(100px);
  /* Desplazado hacia abajo */
  transition: opacity 1s ease, transform 1s ease;
}

section.reveal.visible {
  opacity: 1;
  /* Aparece */
  transform: translateY(0);
  /* Posición normal */
}

/* NAV */

.navbar {
  background-image: var(--bs-navbar-toggler-icon-bg) url(img/navbar.svg) !important;
  background-color: white !important;
  padding: 0;
  box-shadow: 0px 1px 12px rgba(116, 116, 116, 0.1)
}

.navbar-brand img {
  height: 55px;
  margin: 10px 113.531px
}

a.nav-link {
  padding: 0px 30px !important;
  color: black;
  display: inline-block;
  position: relative;
}

a.nav-link:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FF4AB2;
  transform-origin: bottom right;
  transition: transform 0.2s ease-out;
}

a.nav-link:hover:after {
  transform: scaleX(.8);
  transform-origin: bottom left;
}

.navbar-nav {
  margin: 0 auto;
}

.nav-item:last-child {
  margin-left: auto;
}

li {
  margin-bottom: 0px;
}

/* HEADER */

header {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 2px;
}

.img-1 {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(img/park.jpg);
  height: 730px;
}

.parallax {
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  align-content: center;
  width: 100%;
}

.espera {
  opacity: 0;
  /*transform: translateY(20px);*/
  animation: fadeIn 2s ease-out forwards;
  margin-left: 150px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.parallax h3 {
  width: 100%;
  text-align: left;
  vertical-align: middle;
  font-size: 60px;
  color: white !important;
  text-shadow: none;
  max-width: none;
  margin-bottom: 0px;
  height: 60px;
}

.parallax h1 {
  width: 100%;
  text-align: left;
  vertical-align: middle;
  font-size: 80px;
  color: white !important;
  text-shadow: none;
  margin-top: 0;
  padding-top: 0;
}

.parallax p {
  color: white;
  font-size: 23px;
  margin-bottom: 70px;
}

.parallax a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  background-color: #FF4AB2;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 25px;
  letter-spacing: 1px;
}

/* DESCRIPCIÓN */

.descripcion {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.container p {
  font-size: 18px;
  padding-top: 60px;
  padding-bottom: 15px;
}

.descripcion img {
  max-width: 40px;
  padding-bottom: 40px;
}

/* CLIENTES */

.back {
  background-color: #F3F3F3;
  padding: 60px 0;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.clientes img {
  width: 100%;
  max-width: 160px;
  text-align: center;
  vertical-align: middle;
}

/* RESEÑAS */

/* Ajuste del contenedor del carrusel */
.swiper-container {
  width: 100%;
  overflow: hidden;
  /* Evitar desbordamiento global */
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  text-align: center !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  padding: 20px !important;
  /* Espaciado interno */
  background-color: #fff6fb;
  /* Fondo claro */
  border-radius: 20px;
  /* Bordes redondeados */
  box-sizing: border-box;
  /* Incluir padding en el tamaño */
  overflow: hidden;
  /* Prevenir desbordamiento del contenido */
}

.swiper-slide img {
  max-width: 100px;
  margin: 0 auto;
  text-align: center;
}

.swiper-slide p {
  padding-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
}

/* Estilo para las flechas de navegación */
.swiper-button-next,
.swiper-button-prev {
  color: #FF4AB2 !important;
  /* Color de las flechas */
  top: 68% !important;
  /* Posiciona en el centro vertical */
  transform: translateY(-50%);
  /* Centra las flechas */
  width: 30px !important;
  /* Tamaño ajustable */
  height: 20px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next {
  right: 250px;
  /* Posiciona a la derecha */
}

.swiper-button-prev {
  left: 250px;
  /* Posiciona a la izquierda */
}

.carousel-container {
  max-width: 1600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.carousel-container h2 {
  padding-top: 60px;
  padding-bottom: 20px;
}

.carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  justify-content: center;
}

.carousel-item {
  background-color: #fff6fb;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.carousel-item h5 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

.carousel-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.stars {
  color: #FFDC00;
  text-align: center;
  block-size: 30px;
}

.controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 57%;
  width: 100%;
}

.control-btn {
  background-color: #B3B3B3;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
}

.control-btn:hover {
  background-color: #cdcbcb;
}

.res {

}

/* BOTÓN UP */

.volver {
  text-align: center;
  display: flex;
  justify-content: center;
}

.volver a {
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
}

.control-arriba {
  color: #ffffff;
  background-color: #B3B3B3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
  text-align: center;
  rotate: 90deg;
  margin-top: 60px;
  margin-bottom: 30px;
  align-items: center;
  text-decoration: none;
}

/* FOOTER */

.final {
  background-color: #6B6B6B;
  color: white;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.foot {
  padding-top: 80px;
  padding-right: 40px;
  padding-left: 40px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

.logo {
  max-width: 150px;
  margin-top: 35px;
  margin-bottom: 35px;
  margin-left: 80px;
  margin-right: 80px;
}

.contacto {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.contacto img {
  max-width: 18px;
  margin-right: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-top: 0;
}

.contacto p {
  text-align: center;
  margin: 0 0;
}

.contact {
  max-width: 400px;
  margin-left: 70px;
  margin-bottom: 30px;
}

.icono {
  padding-top: 0;
}

ul {
  list-style: none;
  padding: 0;
}

.linkks {
  margin-right: 30px;
  margin-left: 20px;
  max-width: 300px;
}

.fast-link li {
  margin-bottom: 10px !important;
}

a.qlink {
  color: white;
  text-decoration: none;
}

.redes {
  max-width: 200px;
  text-decoration: none;
}

.redes img {
  max-width: 40px;
  display: inline;
  padding-right: 10px;
}

/*---------------------------------------------------*/
/*---------------------------------------------------*/
/*---------------------------------------------------*/

/* NOSOTROS */

.nosotros {
  background-image: url(img/01_NOSOTROS.png);
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1261px;
  height: 200px;
  margin-top: 50px;
}

.nos {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 80px;
}

.nos p {
  padding: 0 0;
}

.misionvision {
  display: flex;
}

.misionvision p {
  padding-top: 5px;
  max-width: 700px;
}

.mision {
  padding-top: 90px;
  padding-left: 60px;
}

.autos img {
  max-width: 318px;
}

.vision {
  text-align: right;
  padding-top: 90px;
}

.vision h3 {
  text-align: right;
  margin-left: 520px;
}

.vision p {
  margin-left: 220px;
}

.valores {
  padding-top: 80px;
  padding-left: 70px;
}

.valores ul {
  font-size: 18px;
  list-style-type: disc;
}

/*---------------------------------------------------*/
/*---------------------------------------------------*/
/*---------------------------------------------------*/

/* SERVICIOS */

.servicios {
  background-image: url(img/02_SERVICIOS.png);
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1261px;
  height: 200px;
  margin-top: 50px;
}

.estacionamiento {
  display: flex;
  margin: 90px 0;
}

.estacion {
  padding: 0;
  text-align: left;
}

.estacion img {
  padding: 0 0;
  max-width: 750px;
}

.estacion p {
  font-size: 20px;
  max-width: 800px
}

.estacion h3 {
  text-align: left;
}

.auto img {
  max-width: 750px;
}

.punto {
  padding: 0;
}

.iconos {
  max-width: 110px;
  padding-top: 20px;
  margin-bottom: 20px;
}

.texto-02 {
  max-width: 670px;
}

.texto-02 h4 {
  font-size: 20px;
  font-weight: 700;
}

.texto-02 p {
  font-size: 18px !important;
}

.valet {
  margin-bottom: 80px;
}

.valet-parking {
  padding-left: 280px;
  padding-top: 50px;
  text-align: left;
}

.valet-parking h3 {
  text-align: left;
}

.valet-parking p {
  font-size: 20px;
  max-width: 1020px;
}

.valet-img img {
  max-width: 800px;
}

.experiencia {
  text-align: center;
}

.experiencia h2 {
  margin-top: 60px;
}

.experiencia img {
  max-width: 110px;
  margin: 10px 20px;
}

.exp {
  margin: 30px 80px;
  max-width: 400px;
}

.exp p {
  font-size: 18;
}

.info {
  background-color: #FF4AB2;
  border-style: none;
  margin: 30px 0;
  padding: 8px 80px;
  border-radius: 40px 40px 40px 40px;
  display: inline-flex;
  text-align: center;
  align-items: center;
}

.info a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.info img {
  max-width: 35px;
  margin-right: 13px;
}

/*---------------------------------------------------*/
/*---------------------------------------------------*/
/*---------------------------------------------------*/

/* UBICACIONES */

.ubicaciones {
  background-image: url(img/03_UBICACIONES.png);
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1261px;
  height: 200px;
  margin-top: 50px;
}

.direc {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 940px;
  gap: 15px;
  margin: 20px 320px;
  justify-items: center;
  align-items: center;
}

.direct {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 670px;
  margin: 0px 630px;
  justify-items: center;
  align-items: center;
}

.tarje {
  margin: 10px 5px;
}

.card {
  height: 70px;
  width: 304px;
  overflow: hidden;
  margin: auto;
  padding: 10px 30px;
  border-radius: 20px;
  border: none;
  transition: all .4s ease-in-out;
  text-align: center;
  background-color: #f7d4ea;
}

.card:hover {
  height: 320px;
  width: 304px;
}

.card-lugar p {
  position: relative;
  display: block;
  transition: all .3s ease;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
}

.card-lugar {
  position: relative;
}

.pink {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.card-lugar:before,
.card-lugar:after {
  content: ´´;
  position: absolute;
  opacity: .7;
}

.ruta {
  background-color: #f7d4ea;
  padding: 0 10px;
  margin: 20px 0;
}

.ruta:nth-child(1) {
  padding: 10px;
  line-height: 25px;
}

.card-acciones {
  text-align: center;
}

.llegar {
  background-color: #FF4AB2;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.llegar:hover {
  cursor: pointer;
  scale: 1.1;
}

.llegar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mapa {
  text-align: center;
  margin: 80px 140px;
  height: 700px;
  display: flex;
  justify-content: center;
}


/*---------------------------------------------------*/
/*---------------------------------------------------*/
/*---------------------------------------------------*/

/* CONTACTO */

.contacto-02 {
  background-image: url(img/04_CONTACTO.png);
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1261px;
  height: 200px;
  margin-top: 50px;
}

.llama {
  margin-bottom: 50px;
  margin-left: 250px;
}

.llama h4 {
  color: #FF4AB2;
  font-size: 24px;
  font-weight: 700;
  margin-top: 100px;
}

.llama p {
  padding: 5px 0;
}

.llama img {
  max-width: 18px;
}

.llama a {
  color: black;
  text-decoration: none;
  padding-left: 8px;
}


.tel h4 {
  margin-top: 60px;
}

.whats {
  background-color: #FF4AB2;
  border-style: none;
  margin: 30px 0;
  padding: 8px 60px;
  border-radius: 40px 40px 40px 40px;
  display: inline-flex;
  text-align: center;
  align-items: center;
}

.whats a {
  color: white;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.whats img {
  max-width: 35px;
  margin-right: 2px;
}

.phone {
  display: flex;
  align-items: center;
  vertical-align: middle;
}

.phone img {
  max-width: 20px;
  margin: 0 10px;
}

.phone p {
  padding: 0 !important;
  margin-bottom: 8px !important;
  margin-top: 8px !important;
}

.coroona img {
  max-width: 80px;
  text-align: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 80px;
}

.siguenos {
  text-align: center;
  margin-bottom: 100px;
}

.siguenos h4 {
  font-size: 20px;
  font-weight: 700;
}

.follow img {
  max-width: 40px;
  display: inline;
  margin-right: 10px;
  margin-left: 10px;
}

.follow a {
  text-decoration: none;
}

/*---------------------------------------------------*/
/*---------------------------------------------------*/
/*---------------------------------------------------*/

/* MEDIA QUERIES */

@media (max-width:1400px) {

  /* FOOTER */

  .final {
    padding-bottom: 60px;
  }

  .foot {
    padding-top: 80px;
    padding-left: 50px;
    margin: 0 0;
  }

  h4 {
    font-size: 18px;
  }

  .logo {
    max-width: 130px;
    margin: 25px 0;
    margin-right: 50px;
  }

  .contact {
    margin-left: 70px;
    margin-bottom: 30px;
  }

  .contacto img {
    max-width: 15px;
    margin-right: 8px;
    margin-top: 8px;
  }

  .contacto p {
    font-size: 16px;
    text-align: center;
    margin: 0 0;
  }

  .icono {
    padding-top: 0;
  }

  a.qlink {
    font-size: 16px;
    color: white;
    text-decoration: none;
  }

  .linkks {
    margin-right: 50px;
    max-width: 180px;
  }

  .fast-link {
    margin-bottom: 35px;
  }

  .redes {
    max-width: 180px;
  }

  .redes img {
    max-width: 35px;
  }

  .redes a {
    text-decoration: none;
  }

  /* CLIENTES */

  .back {
    max-width: 1412px;
  }

  /* RESEÑAS */

  .carousel-container {
    max-width: 1250px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* SERVICIOS */

  h3 {
    margin: 10px 0;
    font-size: 30px;
    max-height: 80px;
    text-align: left;

  }

  h5 {
    font-size: 18px;
    font-weight: 700;
  }

  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .servicios {
    background-image: url(img/02_SERVICIOS.png);
    width: 1000px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .servicios h1 {
    font-size: 45px;
    padding-top: 40px;
  }

  .estacionamiento {
    display: flex;
    margin: 55px 0;
  }

  .estacion {
    padding: 0;
    text-align: left;
    padding-right: 80px;
  }

  .estacion img {
    padding: 0 0;
    max-width: 750px;
  }

  .estacion p {
    font-size: 15px;
    max-width: 800px
  }

  .auto img {
    text-align: left;
    max-width: 580px;
    vertical-align: middle;
    margin-top: 20px;
  }

  .punto {
    padding: 0;
  }

  .iconos {
    max-width: 100px;
    padding-top: 20px;
    margin-bottom: 20px;
  }

  .texto-02 h4 {
    font-size: 18px;
    font-weight: 700;
  }

  .texto-02 p {
    font-size: 15px !important;
    max-width: 800px;
  }

  .valet {
    margin-bottom: 50px;
  }

  .valet-parking {
    padding-left: 80px;
    padding-top: 25px;
    text-align: left;
  }

  .valet-parking p {
    font-size: 15px;
  }

  .valet-img img {
    max-width: 580px;
    vertical-align: middle;
    margin-top: 40px;
  }

  .experiencia {
    text-align: center;
    vertical-align: middle;
  }

  .experiencia h2 {
    margin-top: 35px;
    padding-bottom: 15px;
  }

  .experiencia img {
    max-width: 80px;
    margin: 10px 0;
  }

  .exp {
    margin: 15px 20px;
    max-width: 400px;
  }

  .exp p {
    font-size: 14px;
    max-width: 400px;
    text-align: center;
  }

  .info {
    background-color: #FF4AB2;
    border-style: none;
    margin: 30px 0;
    padding: 8px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .info a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .info img {
    max-width: 25px;
    margin-right: 13px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* UBICACIONES */

  .container {
    max-width: 100%;
  }

  .ubicaciones {
    background-image: url(img/03_UBICACIONES.png);
    width: 1000px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .ubicaciones h1 {
    font-size: 45px;
    padding-top: 40px;
  }

  .direc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 940px;
    gap: 15px;
    margin: 20px 50px;
    justify-items: center;
    align-items: center;
  }

  .direct {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 670px;
    margin: 0px 360px;
    justify-items: center;
    align-items: center;
  }

  .pink {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .card {
    height: 70px;
    width: 304px;
    overflow: hidden;
    margin: auto;
    padding: 10px 30px;
    border-radius: 20px;
    border: none;
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: #f7d4ea;
  }

  .card:hover {
    height: 270px;
    width: 304px;
  }

  .miguel {
    height: 70px;
    padding-top: 10px;
  }

  .miguel:hover {
    height: 270px;
    width: 304px;
    padding-top: 6px;
    border-radius: 25px;
  }

  .teatro {
    padding-top: 10px;
    margin-bottom: 3px;
  }

  .teatro:hover {
    height: 270px;
  }

  .card-lugar p {
    position: relative;
    display: block;
    transition: all .3s ease;
    margin-bottom: 3px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
  }

  .card-lugar {
    position: relative;
  }

  .card-lugar:before,
  .card-lugar:after {
    content: ´´;
    position: absolute;
    opacity: .7;
  }

  .tarje {
    margin: 10px 10px;
    padding: 0;
    max-width: 250px;
  }

  .ruta {
    background-color: #f7d4ea;
    margin-top: 6px;
    padding: 0 10px;
    margin: 20px 0;
  }

  .ruta:nth-child(1) {
    padding: 10px;
    line-height: 25px;
  }

  .ruta.desplazar {
    margin-bottom: 9px;
    margin-top: 6px;
  }

  .card-acciones {
    text-align: center;
  }

  .llegar {
    background-color: #FF4AB2;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .llegar:hover {
    cursor: pointer;
    scale: 1.1;
  }

  .llegar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }

  .mapa {
    text-align: center;
    margin: 80px 50px;
    height: 700px;
    display: flex;
    justify-content: center;
  }

}

@media (max-width:1200px) {

  /* GENERAL */

  h2 {
    font-size: 35px;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  /* NAV */

  .navbar-brand img {
    margin-right: 50px;
  }

  /* HEADER */

  .img-1 {
    height: 600px;
  }

  .espera {
    margin-left: 100px;
  }

  .parallax h3 {
    text-align: left !important;
    font-size: 50px;
    height: 52px;
  }

  .parallax h1 {
    font-size: 70px;
  }

  .parallax p {
    font-size: 18px;
  }

  .parallax a {
    font-size: 17px;
    padding: 15px 30px;
  }

  /* CLIENTES */

  .back {
    max-width: 1212px;
  }


  /* RESEÑAS */

  .carousel-container {
    max-width: 1000px;
  }

  /* FOOTER */

  .final {
    padding-bottom: 60px;
  }

  .foot {
    padding-top: 80px;
    padding-left: 30px;
    margin: 0 0;
  }

  h4 {
    font-size: 17px;
  }

  .logo {
    max-width: 110px;
    margin: 25px 0;
    margin-right: 30px;
  }

  .contact {
    margin-right: 40px;
    margin-left: 70px;
    margin-bottom: 30px;
  }

  .contacto img {
    max-width: 15px;
    margin-right: 8px;
    margin-top: 8px;
  }

  .contacto p {
    font-size: 16px;
    text-align: center;
    margin: 0 0;
  }

  .icono {
    padding-top: 0;
  }

  a.qlink {
    font-size: 16px;
    color: white;
    text-decoration: none;
  }

  .linkks {
    margin-right: 50px;
    max-width: 180px;
  }

  .fast-link {
    margin-bottom: 35px;
  }

  .redes {
    max-width: 150px;
  }

  .redes img {
    max-width: 35px;
  }

  .redes a {
    text-decoration: none;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* NOSOTROS */

  h3 {
    font-size: 30px;
    text-align: left;
    align-items: left;
  }

  .nosotros {
    background-image: url(img/01_NOSOTROS.png);
    width: 1000px;
    height: 140px;
    margin-top: 30px;
  }

  .nosotros h1 {
    padding-top: 30px;
  }

  .nos {
    text-align: center;
    padding: 40px 20px;
  }

  .nos p {
    padding: 0 0;
  }

  .autos {
    text-align: center;
    align-items: center;
    padding: 0;
  }

  .vs {
    margin-left: 20px;
  }

  .autos img {
    max-width: 300px;
  }

  .misionvision {
    margin: 35px 0;
  }

  .misionvision p {
    padding-top: 5px;
    max-width: 700px;
    text-align: left;
  }

  .mision {
    padding-top: 90px;
    padding-left: 45px;
    padding-right: 15px;
    text-align: left;
  }

  .mision p {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 17px;
  }

  .vision {
    text-align: right;
    padding: 80px 0;
    max-width: 750px;
  }

  .vision h3 {
    text-align: right;
    margin-left: 305px;
  }

  .vision p {
    text-align: right;
    padding: 0 4px;
    margin: 0 4px;
    font-size: 17px;
  }

  .valores {
    padding-top: 15px;
    padding-left: 55px;
    padding-right: 15px;
  }

  .valores ul {
    font-size: 17px;
  }

  li {
    padding-bottom: 10px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* SERVICIOS */

  h3 {
    margin: 10px 0;
    font-size: 30px;
    max-height: 80px;
  }

  h5 {
    font-size: 18px;
    font-weight: 700;
  }

  .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .servicios {
    background-image: url(img/02_SERVICIOS.png);
    width: 1000px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .servicios h1 {
    font-size: 45px;
    padding-top: 40px;
  }

  .estacionamiento {
    display: flex;
    margin: 55px 0;
  }

  .estacion {
    padding: 0;
    text-align: left;
    padding-right: 80px;
  }

  .estacion img {
    padding: 0 0;
    max-width: 750px;
  }

  .estacion p {
    font-size: 15px;
    max-width: 800px
  }

  .auto img {
    text-align: left;
    max-width: 500px;
    vertical-align: middle;
    margin-top: 50px;
  }

  .punto {
    padding: 0;
  }

  .iconos {
    max-width: 100px;
    padding-top: 20px;
    margin-bottom: 20px;
  }

  .texto-02 h4 {
    font-size: 18px;
    font-weight: 700;
  }

  .texto-02 p {
    font-size: 15px !important;
    max-width: 800px;
  }

  .valet {
    margin-bottom: 50px;
  }

  .valet-parking {
    padding-left: 80px;
    padding-top: 25px;
    text-align: left;
  }

  .valet-parking p {
    font-size: 15px;
  }

  .valet-img img {
    max-width: 500px;
    vertical-align: middle;
    margin-top: 40px;
  }

  .experiencia {
    text-align: center;
  }

  .experiencia h2 {
    margin-top: 35px;
    padding-bottom: 15px;
  }

  .experiencia img {
    max-width: 80px;
    margin: 10px 0;
  }

  .exp {
    margin: 15px 20px;
    max-width: 300px;
  }

  .exp p {
    font-size: 14px;
    max-width: 300px;
  }

  .info {
    background-color: #FF4AB2;
    border-style: none;
    margin: 30px 0;
    padding: 8px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .info a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .info img {
    max-width: 25px;
    margin-right: 13px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* UBICACIONES */

  .container {
    max-width: 100%;
  }

  .pink {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .ubicaciones {
    background-image: url(img/03_UBICACIONES.png);
    width: 1000px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .ubicaciones h1 {
    font-size: 45px;
    padding-top: 40px;
  }

  .direc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 900px;
    gap: 15px;
    margin: 20px 50px;
    justify-items: center;
    align-items: center;
  }

  .direct {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 570px;
    margin: 0px 320px;
    justify-items: center;
    align-items: center;
  }

  .tarje {
    margin: 10px 25px;
    padding: 0;
    max-width: 230px;
  }

  .card {
    height: 70px;
    width: 260px;
    overflow: hidden;
    margin: auto;
    padding: 10px 30px;
    border-radius: 20px;
    border: none;
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: #f7d4ea;
  }

  .card:hover {
    height: 290px;
    width: 260px;
  }

  .miguel {
    height: 70px;
    padding-top: 0;
  }

  .miguel:hover {
    height: 270px;
    width: 304px;
    padding-top: 6px;
    border-radius: 25px;
  }

  .teatro {
    padding-top: 10px;
    margin-bottom: 3px;
  }

  .teatro:hover {
    height: 270px;
  }

  .card-lugar p {
    position: relative;
    display: block;
    transition: all .3s ease;
    margin-bottom: 3px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
  }

  .card-lugar {
    position: relative;
  }

  .card-lugar:before,
  .card-lugar:after {
    content: ´´;
    position: absolute;
    opacity: .7;
  }

  .ruta {
    background-color: #f7d4ea;
    margin-top: 6px;
    padding: 0 10px;
    margin: 20px 0;
  }

  .ruta:nth-child(1) {
    padding: 10px;
    line-height: 25px;
  }

  .ruta.desplazar {
    margin-bottom: 9px;
    margin-top: 6px;
  }

  .card-acciones {
    text-align: center;
  }

  .llegar {
    background-color: #FF4AB2;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .llegar:hover {
    cursor: pointer;
    scale: 1.1;
  }

  .llegar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
  }

  .mapa {
    text-align: center;
    margin: 80px 50px;
    height: 700px;
    display: flex;
    justify-content: center;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* CONTACTO */

  .contacto-02 {
    background-image: url(img/04_CONTACTO.png);
    width: 1000px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .contacto-02 h1 {
    font-size: 45px;
    padding-top: 40px;
  }

  .llama {
    margin-bottom: 50px;
    margin-left: 180px;
  }

  .llama h4 {
    color: #FF4AB2;
    font-size: 24px;
    font-weight: 700;
    margin-top: 100px;
  }

  .llama p {
    padding: 5px 0;
  }

  .llama img {
    max-width: 18px;
  }

  .llama a {
    color: black;
    text-decoration: none;
    padding-left: 8px;
  }


  .tel h4 {
    margin-top: 60px;
  }

  .whats {
    background-color: #FF4AB2;
    border-style: none;
    margin: 30px 0;
    padding: 8px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .whats a {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
  }

  .whats img {
    max-width: 35px;
    margin-right: 2px;
  }

  .phone {
    display: flex;
    align-items: center;
    vertical-align: middle;
  }

  .phone img {
    max-width: 20px;
    margin: 0 10px;
  }

  .phone p {
    padding: 0 !important;
    margin-bottom: 8px !important;
    margin-top: 8px !important;
  }

  .coroona img {
    max-width: 80px;
    text-align: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
  }

  .siguenos {
    text-align: center;
    margin-bottom: 100px;
  }

  .siguenos h4 {
    font-size: 20px;
    font-weight: 700;
  }

  .follow img {
    max-width: 40px;
    display: inline;
    margin-right: 10px;
    margin-left: 10px;
  }

  .follow a {
    text-decoration: none;
  }

}

@media (max-width:992px) {

  /* GENERAL */

  h2 {
    font-size: 35px;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  /* NAV */

  .navbar-brand img {
    height: 55px;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 60px;
    margin-right: 50px;
  }

  .navbar-nav {
    text-align: center;
    margin: 20px 0;
  }

  .nav-item a {
    font-size: 14px;
  }

  .nav-item {
    margin: 12px 0;
  }

  .nav-item:last-child {
    margin-left: 0px;
  }

  /* HEADER */

  .img-1 {
    height: 600px;
  }

  .espera {
    margin-left: 90px;
  }

  .parallax h3 {
    text-align: left !important;
    font-size: 60px;
    height: 62px;
  }

  .parallax h1 {
    font-size: 70px;
  }

  .parallax p {
    font-size: 20px;
  }

  .parallax a {
    font-size: 17px;
    padding: 15px 30px;
  }

  /* DESCRIPCIÓN */

  .container p {
    font-size: 16px;
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .descripcion img {
    max-width: 35px;
    padding-bottom: 30px;
  }

  /* CLIENTES */

  .back {
    max-width: 1004px;
    padding: 40px 0;
  }

  .clientes img {
    max-width: 130px;
  }

  /* RESEÑAS */

  .carousel-container {
    max-width: 800px;
  }

  .carousel-container h2 {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .carousel-item {
    padding: 30px 50px;
    margin: 20px 20px;
  }

  .carousel-item h5 {
    font-size: 18px;
    margin: 10px 0;
  }

  .carousel-item p {
    font-size: 14px;
    width: 260px;
    height: 120px;
  }

  .control-btn {
    width: 35px;
    height: 35px;
    font-size: 25px;
    margin: 0;
  }

  /* BOTÓN UP */

  .control-arriba {
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .volver a {
    text-decoration: none;
  }

  /* FOOTER */

  .final {
    padding-bottom: 60px;
  }

  .foot {
    padding-top: 80px;
    padding-left: 50px;
  }

  h4 {
    font-size: 16px;
  }

  .logo {
    max-width: 110px;
    margin: 25px 0;
    margin-right: 60px;
  }

  .contact {
    margin-left: 10px;
    margin-right: 20px;
    margin-bottom: 30px;
  }

  .contacto img {
    max-width: 15px;
    margin-right: 8px;
    margin-top: 8px;
  }

  .contacto p {
    font-size: 14px;
    text-align: center;
    margin: 0 0;
  }

  .icono {
    padding-top: 0;
  }

  a.qlink {
    font-size: 14px;
    color: white;
    text-decoration: none;
  }

  .linkks {
    margin-right: 20px;
    max-width: 150px;
  }

  .fast-link {
    margin-bottom: 35px;
  }

  .redes img {
    max-width: 35px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* NOSOTROS */

  h3 {
    font-size: 25px;
    text-align: left;
    align-items: left;
  }

  .nosotros {
    background-image: url(img/01_NOSOTROS.png);
    width: 900px;
    height: 140px;
    margin-top: 30px;
  }

  .nosotros h1 {
    font-size: 48px;
    padding-top: 40px;
  }

  .nos {
    text-align: center;
    padding: 40px 0;
  }

  .nos p {
    padding: 0 0;
  }

  .autos {
    text-align: center;
    align-items: center;
    padding: 0;
  }

  .vs {
    padding-right: 10px;
  }

  .autos img {
    max-width: 250px;
  }

  .misionvision {
    margin: 35px 0;
  }

  .misionvision p {
    padding-top: 5px;
    max-width: 700px;
    text-align: left;
  }

  .mision {
    padding-top: 75px;
    padding-left: 40px;
    padding-right: 15px;
    text-align: left;
  }

  .mision p {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 15px;
  }

  .vision {
    text-align: right;
    padding: 70px 5px;
  }

  .vision h3 {
    text-align: right;
    margin-left: 305px;
    padding-right: 20px;
  }

  .vision p {
    text-align: right;
    padding: 0 4px;
    padding-right: 20px;
    margin: 0 4px;
    font-size: 15px;
  }

  .valores {
    padding-top: 15px;
    padding-left: 55px;
    padding-right: 15px;
  }

  .valores ul {
    font-size: 15px;
  }

  li {
    padding-bottom: 10px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* SERVICIOS */

  h3 {
    text-align: center !important;
    margin: 10px 0;
    font-size: 30px;
  }

  h5 {
    font-size: 18px;
    font-weight: 700;
  }

  .colu {
    flex-direction: column;
    align-items: center;
    display: flex;
    max-width: 992px;
  }

  .servicios {
    background-image: url(img/02_SERVICIOS.png);
    width: 900px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .servicios h1 {
    font-size: 48px;
    padding-top: 40px;
  }

  .estacionamiento {
    display: flex;
    margin: 30px 0;
  }

  .estacion {
    padding: 0;
    text-align: center;
    display: contents;
  }

  .estacion img {
    padding: 0 0;
    margin: 0 0;
    text-align: center;
  }

  .estacion p {
    max-width: 992px;
    font-size: 17px;
    padding: 20px 50px;
  }

  .auto {
    display: flex;
    justify-content: center;
  }

  .auto img {
    max-width: 500px;
  }

  .punto {
    padding: 0;
  }

  .iconos {
    max-width: 110px;
    padding: 10px 0;
    margin: 20px 0 !important;
  }

  .texto-02 {
    max-width: 992px;
    padding: 0 20px;
  }

  .texto-02 h4 {
    font-size: 21px;
    font-weight: 700;
    padding: 0 30px;
  }

  .texto-02 p {
    font-size: 17px !important;
    max-width: 992px;
  }

  .valet {
    margin-bottom: 30px;
    text-align: center;
    vertical-align: middle;
  }

  .valett {
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

  .valet-parking {
    padding-left: 15px;
    padding-top: 30px;
    text-align: center;
  }

  .valet-parking h3 {
    margin: 0;
    vertical-align: middle;
    margin-left: 280px;
  }

  .valet-parking p {
    font-size: 17px;
    padding: 20px 55px;
    margin: 10px 0;
  }

  .valet-img img {
    max-width: 500px;
  }

  .experiencia {
    text-align: center;
  }

  .experiencia h2 {
    margin-top: 35px;
    padding-bottom: 15px;
  }

  .experiencia img {
    max-width: 80px;
    margin: 10px 0;
  }

  .exp {
    margin: 15px 20px;
    max-width: 300px;
  }

  .exp p {
    font-size: 16px;
    max-width: 300px;
  }

  .info {
    background-color: #FF4AB2;
    border-style: none;
    margin: 20px 0;
    margin-top: 30px;
    padding: 7px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .info a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .info img {
    max-width: 28px;
    margin-right: 13px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* UBICACIONES */

  .container {
    max-width: 100%;
  }

  .ubicaciones {
    background-image: url(img/03_UBICACIONES.png);
    width: 900px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .ubicaciones h1 {
    font-size: 48px;
    padding-top: 40px;
  }

  .direcciones {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .direc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 700px;
    gap: 20px;
    margin: 10px 0;
    justify-items: center;
    align-items: center;
  }

  .direct {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 700px;
    gap: 20px;
    margin: 10px 0;
    justify-items: center;
    align-items: center;
  }

  .tarje {
    margin-bottom: 20px;
  }

  .card {
    height: 70px;
    width: 320px;
    overflow: hidden;
    margin: auto;
    padding: 12px 40px;
    border-radius: 20px;
    border: none;
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: #f7d4ea;
  }

  .card:hover {
    height: 230px;
    width: 320px;
    border-radius: 25px;
  }

  .miguel {
    height: 70px;
    padding-top: 4px;
  }

  .miguel:hover {
    height: 250px;
    width: 320px;
    padding-top: 6px;
    border-radius: 25px;
  }

  .card-lugar p {
    position: relative;
    display: block;
    transition: all .3s ease;
    padding: 0 0;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
  }

  .card-lugar {
    position: relative;
  }

  .card-lugar:before,
  .card-lugar:after {
    content: ´´;
    position: absolute;
    opacity: .7;
  }

  .ruta {
    background-color: #f7d4ea;
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 13px;
  }

  .ruta:nth-child(1) {
    padding: 10px;
    line-height: 1.5;
  }

  .card-direccion {
    margin: 10px 0;
  }

  .card-acciones {
    text-align: center;
    margin: 5px 0;
  }

  .llegar {
    background-color: #FF4AB2;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .llegar:hover {
    cursor: pointer;
    scale: 1.1;
  }

  .llegar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
  }

  .mapa {
    text-align: center;
    padding: 60px 50px;
    margin: 0 0;
    height: 700px;
    display: flex;
    justify-content: center;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* CONTACTO */

  .contacto-02 {
    background-image: url(img/04_CONTACTO.png);
    width: 900px;
    height: 140px;
    margin-top: 30px;
    text-align: center;
  }

  .contacto-02 h1 {
    font-size: 48px;
    padding-top: 40px;
  }

  .llama {
    margin-bottom: 50px;
    margin-left: 120px;
  }

  .llama h4 {
    color: #FF4AB2;
    font-size: 22px;
    font-weight: 700;
    margin-top: 100px;
  }

  .llama p {
    padding: 5px 0;
  }

  .llama img {
    max-width: 18px;
  }

  .llama a {
    color: black;
    text-decoration: none;
    padding-left: 8px;
  }


  .tel h4 {
    margin-top: 60px;
  }

  .whats {
    background-color: #FF4AB2;
    border-style: none;
    margin: 10px 0;
    padding: 8px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .whats a {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
  }

  .whats img {
    max-width: 30px;
    margin-right: 2px;
  }

  .phone {
    display: flex;
    align-items: center;
    vertical-align: middle;
  }

  .phone img {
    max-width: 20px;
    margin: 0 10px;
  }

  .phone p {
    padding: 0 !important;
    margin-bottom: 8px !important;
    margin-top: 8px !important;
  }

  .coroona img {
    max-width: 80px;
    text-align: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
  }

  .siguenos {
    text-align: center;
    margin-bottom: 100px;
  }

  .siguenos h4 {
    font-size: 20px;
    font-weight: 700;
  }

  .follow img {
    max-width: 40px;
    display: inline;
    margin-right: 10px;
    margin-left: 10px;
  }

  .follow a {
    text-decoration: none;
  }

}

@media (max-width: 768px) {

  /* GENERAL */

  h2 {
    font-size: 35px;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  /* NAV */

  .navbar-brand img {
    height: 55px;
    margin: 8px 60px
  }

  .navbar-nav {
    text-align: center;
    margin: 20px 0;
  }

  .navbar-toggler {
    margin: 0 40px;
    margin-top: 7px;
  }

  .nav-item a {
    font-size: 18px;
  }

  .nav-item {
    margin: 12px 0;
  }

  .nav-item:last-child {
    margin-left: 0px;
  }

  /* HEADER */

  .img-1 {
    height: 600px;
  }

  .espera {
    margin-left: 60px;
  }

  .parallax h3 {
    text-align: left !important;
    font-size: 50px;
    height: 52px;
  }

  .parallax h1 {
    font-size: 70px;
  }

  .parallax p {
    font-size: 18px;
  }

  .parallax a {
    font-size: 17px;
    padding: 15px 30px;
  }

  /* DESCRIPCIÓN */

  .container p {
    font-size: 16px;
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .descripcion img {
    max-width: 35px;
    padding-bottom: 30px;
  }

  /* CLIENTES */

  .back {
    max-width: 780px;
    padding: 40px 0;
  }

  .clientes img {
    max-width: 200px;
  }

  /* RESEÑAS */

  .carousel-container {
    max-width: 700px;
  }

  .carousel-container h2 {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .carousel-item {
    padding: 30px 50px;
    margin: 20px 20px;
  }

  .carousel-item h5 {
    font-size: 18px;
    margin: 10px 0;
  }

  .carousel-item p {
    font-size: 14px;
    width: 260px;
    height: 120px;
  }

  .control-btn {
    width: 35px;
    height: 35px;
    font-size: 25px;
    margin: 0;
  }

  /* BOTÓN UP */

  .control-arriba {
    width: 35px;
    height: 35px;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  /* FOOTER */

  .final {
    padding-bottom: 1px;
  }

  .foot {
    padding: 80px 20px;
    max-width: 768px;
  }

  h4 {
    font-size: 15px;
  }

  .logo {
    max-width: 110px;
    margin: 25px 0;
  }

  .contact {
    margin-bottom: 0px;
    margin-right: 30px;
    margin-left: 30px;
    max-width: 200px;
  }

  .icono {
    padding-top: 0;
  }

  .contacto img {
    max-width: 15px;
    margin-right: 8px;
  }

  .contacto p {
    font-size: 14px;
    text-align: center;
    margin: 0 0;
  }

  a.qlink {
    font-size: 14px;
    color: white;
    text-decoration: none;
  }

  .fast-link {
    margin-bottom: 35px;
  }

  .linkks {
    max-width: 130px;
  }

  .redes img {
    max-width: 40px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* NOSOTROS */

  h3 {
    font-size: 25px;
    text-align: left;
    align-items: left;
  }

  .nosotros {
    background-image: none;
    width: 500px;
    height: 60px;
    margin-top: 30px;
  }

  .nosotros h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 40px;
    padding-top: 10px;
    text-align: center;
  }

  .nos {
    text-align: center;
    padding: 40px 0;
  }

  .nos p {
    padding: 0 0;
  }

  .autos {
    text-align: center;
    align-items: center;
    padding: 0;
  }

  .vs {
    padding-right: 10px;
  }

  .autos img {
    max-width: 200px;
  }

  .misionvision {
    margin: 35px 0;
  }

  .misionvision p {
    padding-top: 5px;
    max-width: 700px;
    text-align: left;
  }

  .mision {
    padding-top: 40px;
    padding-left: 50px;
    padding-right: 15px;
    text-align: left;
  }

  .mision p {
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 15px;
  }

  .vision {
    text-align: right;
    padding: 30px 5px;
  }

  .vision h3 {
    text-align: right;
    margin-left: 125px;
    padding-right: 20px;
  }

  .vision p {
    text-align: right;
    padding: 0 4px;
    padding-right: 20px;
    margin: 0 4px;
    font-size: 15px;
  }

  .valores {
    padding-top: 15px;
    padding-left: 55px;
    padding-right: 15px;
  }

  .valores ul {
    font-size: 15px;
  }

  li {
    padding-bottom: 10px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* SERVICIOS */

  h3 {
    text-align: center !important;
    margin: 10px 0;
  }

  h5 {
    font-size: 17px;
    font-weight: 700;
  }

  .colu {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .servicios {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .servicios h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 40px;
    padding-top: 10px;
  }

  .estacionamiento {
    display: flex;
    margin: 30px 0;
  }

  .estacion {
    padding: 0;
    text-align: center;
    display: contents;
  }

  .estacion img {
    padding: 0 0;
    margin: 0 0;
    text-align: center;
  }

  .estacion p {
    max-width: 768px;
    font-size: 15px;
    padding: 10px 25px;
  }

  .auto {
    display: flex;
    justify-content: center;
  }

  .auto img {
    max-width: 400px;
  }

  .punto {
    padding: 0;
  }

  .iconos {
    max-width: 100px;
    padding: 10px 0;
    margin: 20px 0 !important;
  }

  .texto-02 {
    max-width: 768px;
    padding: 0 20px;
  }

  .texto-02 h4 {
    font-size: 18px;
    font-weight: 700;
    padding: 0 30px;
  }

  .texto-02 p {
    font-size: 15px !important;
  }

  .valet {
    margin-bottom: 30px;
    text-align: center;
    vertical-align: middle;
  }

  .valett {
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

  .valet-parking {
    padding-left: 15px;
    padding-top: 30px;
    text-align: center;
  }

  .valet-parking h3 {
    margin: 0;
    vertical-align: middle;
    margin-left: 160px;
  }

  .valet-parking p {
    font-size: 16px;
    padding: 10px 8px;
    margin: 10px 0;
  }

  .valet-img img {
    max-width: 400px;
  }

  .experiencia {
    text-align: center;
  }

  .experiencia h2 {
    margin-top: 35px;
    padding-bottom: 15px;
  }

  .experiencia img {
    max-width: 80px;
    margin: 10px 0;
  }

  .exp {
    margin: 15px 15px;
    max-width: 330px;
    background-color: #F5F5F5;
    border-radius: 20px 20px 20px 20px;
  }

  .exp p {
    font-size: 15px;
  }

  .info {
    background-color: #FF4AB2;
    border-style: none;
    margin: 20px 0;
    margin-top: 30px;
    padding: 7px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .info a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .info img {
    max-width: 28px;
    margin-right: 13px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* UBICACIONES */

  .container {
    max-width: 100%;
  }

  .ubicaciones {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .ubicaciones h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 40px;
    padding-top: 10px;
  }

  .direcciones {
    justify-content: center;
    text-align: center;
  }

  .direc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 768px;
    gap: 20px;
    margin: 20px 0;
    justify-items: center;
    align-items: center;
  }

  .direct {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 768px;
    gap: 20px;
    margin: 20px 0;
    justify-items: center;
    align-items: center;
  }

  .tarje {
    margin-bottom: 25px;
  }

  .card {
    height: 50px;
    width: 300px;
    overflow: hidden;
    margin: auto;
    padding: 12px 40px;
    border-radius: 40px;
    border: none;
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: #f7d4ea;
  }

  .card:hover {
    height: 230px;
    width: 300px;
    border-radius: 25px;
  }

  .miguel {
    height: 50px;
    padding-top: 4px;
  }

  .miguel:hover {
    height: 250px;
    width: 300px;
    padding-top: 6px;
    border-radius: 25px;
  }

  .card-lugar p {
    position: relative;
    display: block;
    transition: all .3s ease;
    padding: 0 0;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
  }

  .card-lugar {
    position: relative;
  }

  .card-lugar:before,
  .card-lugar:after {
    content: ´´;
    position: absolute;
    opacity: .7;
  }

  .ruta {
    background-color: #f7d4ea;
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 13px;
  }

  .ruta:nth-child(1) {
    padding: 10px;
    line-height: 1.5;
  }

  .card-direccion {
    margin: 10px 0;
  }

  .card-acciones {
    text-align: center;
    margin: 5px 0;
  }

  .llegar {
    background-color: #FF4AB2;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .llegar:hover {
    cursor: pointer;
    scale: 1.1;
  }

  .llegar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
  }

  .mapa {
    text-align: center;
    margin: 10px 5px;
    height: 500px;
    display: flex;
    justify-content: center;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* CONTACTO */

  .contacto-02 {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .contacto-02 h1 {
    color: #FF4AB2;
    text-shadow: none;
    font-size: 40px;
    padding-top: 10px;
  }

  .llama {
    margin-bottom: 20px;
    margin-left: 0;
    text-align: center;
  }

  .llama h4 {
    color: #FF4AB2;
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
  }

  .llama p {
    padding: 5px 0;
  }

  .llama img {
    max-width: 18px;
  }

  .llama a {
    color: black;
    text-decoration: none;
    padding-left: 8px;
    font-size: 15px;
  }

  .tel {
    text-align: center;
  }

  .tel h4 {
    margin-top: 50px;
  }

  .whats {
    background-color: #FF4AB2;
    border-style: none;
    margin: 10px 0;
    padding: 8px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .whats a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .whats img {
    max-width: 28px;
    margin-right: 2px;
  }

  .phone {
    display: flex;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    justify-content: center
  }

  .phone img {
    max-width: 20px;
    margin: 0 10px;
  }

  .phone p {
    text-align: center;
    padding: 0 !important;
    margin-bottom: 8px !important;
    margin-top: 8px !important;
  }

  .coroona img {
    max-width: 70px;
    text-align: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 80px;
  }

  .siguenos {
    text-align: center;
    margin-bottom: 100px;
  }

  .siguenos h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .follow img {
    max-width: 30px;
    display: inline;
    margin-right: 10px;
    margin-left: 10px;
  }

  .follow a {
    text-decoration: none;
  }

}

@media (max-width: 576px) {

  /* GENERAL */

  h2 {
    font-size: 30px;
    padding-top: 20px;
    padding-bottom: 30px;
  }

  /* NAV */

  .navbar-brand img {
    height: 50px;
    margin: 10px 40px
  }

  .navbar-nav {
    text-align: center;
    margin: 20px 0;
  }

  .navbar-toggler {
    margin: 0 20px;
    margin-top: 9px;
  }

  .nav-item a {
    font-size: 18px;
  }

  .nav-item {
    margin: 12px 0;
  }

  .nav-item:last-child {
    margin-left: 0px;
  }

  /* HEADER */

  .img-1 {
    height: 600px;
  }

  .espera {
    margin-left: 60px;
  }

  .parallax h3 {
    text-align: left !important;
    font-size: 40px;
    height: 42px;
  }

  .parallax h1 {
    font-size: 50px;
  }

  .parallax p {
    font-size: 16px;
  }

  .parallax a {
    font-size: 17px;
    padding: 15px 30px;
  }


  /* DESCRIPCIÓN */

  .container p {
    font-size: 15px;
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .descripcion img {
    max-width: 35px;
    padding-bottom: 30px;
  }

  /* CLIENTES */

  .back {
    padding: 30px 0;
  }

  .clientes img {
    max-width: 140px;
  }

  /* RESEÑAS */

  .carousel-container {
    max-width: 506px;
  }

  .carousel-container h2 {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .carousel-item {
    padding: 30px 30px;
    margin: 20px 30px;
  }

  .carousel-item h5 {
    font-size: 18px;
    margin: 10px 0;
  }

  .carousel-item p {
    font-size: 14px;
    width: 222px;
    height: 116px;
    margin-bottom: 25px;
  }

  .control-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
    margin: 0;
  }

  /* BOTÓN UP */

  .control-arriba {
    width: 32px;
    height: 32px;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .control-arriba a {
    margin-bottom: 50px;
  }

  /* FOOTER */

  .final {
    padding-bottom: 60px;
  }

  .foot {
    padding-top: 80px;
    padding-left: 40px;
    justify-content: left !important;
  }

  h4 {
    font-size: 18px;
  }

  .logo {
    max-width: 180px;
    margin: 25px 0;
    margin-right: 200px;
    padding-bottom: 20px;
  }

  .contact {
    margin-bottom: 30px;
    margin-left: 0;
  }

  .contacto img {
    max-width: 15px;
    margin-right: 8px;
    margin-top: 8px;
  }

  .contacto p {
    font-size: 16px;
    text-align: center;
    margin: 0 0;
  }

  .icono {
    padding-top: 0;
  }

  a.qlink {
    font-size: 15px;
    color: white;
    text-decoration: none;
  }

  .linkks {
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 300px;
  }

  .fast-link {
    margin-bottom: 35px;
  }

  .redes h4 {
    width: 300px;
  }

  .redes img {
    max-width: 40px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* NOSOTROS */

  h3 {
    font-size: 25px;
    text-align: center;
    align-items: center;
    margin-left: 50px;
  }

  .nosotros {
    background-image: none;
    width: 500px;
    height: 60px;
    margin-top: 30px;
  }

  .nosotros h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 35px;
    padding-top: 10px;
    text-align: center;
  }

  .nos {
    text-align: center;
    padding: 40px 0;
  }

  .nos p {
    padding: 0 0;
  }

  .autos {
    text-align: center;
    align-items: center;
  }

  .autos img {
    max-width: 250px;
  }

  .misionvision {
    margin: 35px 0;
  }

  .misionvision p {
    padding-top: 5px;
    max-width: 700px;
    text-align: center;
  }

  .mision {
    padding: 25px 15px;
    text-align: center;
  }

  .mision p {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .vsn {
    flex-direction: column-reverse;
  }

  .vision {
    text-align: center;
    padding: 25px 15px;
  }

  .vision h3 {
    text-align: center;
    margin-left: 50px;
  }

  .vision p {
    padding: 0 4px;
    margin: 0 4px;
  }

  .valores {
    padding-top: 15px;
    padding-left: 35px;
    padding-right: 20px;
  }

  .valores ul {
    font-size: 15px;
  }

  li {
    padding-bottom: 10px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* SERVICIOS */

  h3 {
    text-align: center !important;
    margin: 10px 0;
  }

  h5 {
    font-size: 15px;
    font-weight: 700;
  }

  .row {
    justify-content: center;
    margin: 0 0;
  }

  .colu {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .servicios {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .servicios h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 35px;
    padding-top: 10px;
  }

  .estacionamiento {
    display: flex;
    margin: 30px 0;
  }

  .estacion {
    padding: 0;
    text-align: center;
    display: contents;
  }

  .estacion img {
    padding: 0 0;
    max-width: 380px;
  }

  .estacion p {
    max-width: 575px;
    font-size: 15px;
    padding: 10px 25px;
  }

  .punto {
    padding: 0;
  }

  .iconos {
    max-width: 100px;
    padding: 10px 0;
    margin: 20px 0;
  }

  .texto-02 {
    max-width: 575px;
    padding: 0 20px;
  }

  .texto-02 h4 {
    font-size: 18px;
    font-weight: 700;
    padding: 0 30px;
  }

  .texto-02 p {
    font-size: 14px !important;
  }

  .valet {
    margin-bottom: 30px;
    text-align: center;
    vertical-align: middle;
  }

  .valett {
    flex-direction: column-reverse;
    align-items: center;
    display: flex;
  }

  .valet-parking {
    padding-left: 15px;
    padding-top: 30px;
    text-align: center;
  }

  .valet-parking h3 {
    margin: 0;
    vertical-align: middle;
    margin-left: 60px;
  }

  .valet-parking p {
    font-size: 15px;
    padding: 10px 8px;
    margin: 10px 0;
  }

  .valet-img img {
    max-width: 380px;
  }

  .experiencia {
    text-align: center;
  }

  .experiencia h2 {
    margin-top: 30px;
    padding-bottom: 15px;
  }

  .experiencia img {
    max-width: 70px;
    margin: 10px 0;
  }

  .exp {
    margin: 20px 15px;
    max-width: 220px;
    background-color: #F5F5F5;
    border-radius: 20px 20px 20px 20px;
  }

  .exp p {
    font-size: 13px;
  }

  .info {
    background-color: #FF4AB2;
    border-style: none;
    margin: 20px 0;
    margin-top: 30px;
    padding: 7px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .info a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .info img {
    max-width: 28px;
    margin-right: 13px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* UBICACIONES */

  .container {
    max-width: 100%;
  }

  .ubicaciones {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .ubicaciones h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 35px;
    padding-top: 10px;
  }

  .direcciones {
    justify-content: center;
    text-align: center;
  }

  .direc {
    display: grid;
    grid-template-columns: 1fr;
    width: 576px;
    gap: 20px;
    margin: 20px 0;
    justify-items: center;
    align-items: center;
  }

  .direct {
    display: grid;
    grid-template-columns: 1fr;
    width: 576px;
    gap: 20px;
    margin: 20px 0;
    justify-items: center;
    align-items: center;
  }

  .tarje {
    margin-bottom: 20px;
  }

  .card {
    height: 46px;
    width: 280px;
    overflow: hidden;
    margin: auto;
    padding: 12px 40px;
    border-radius: 40px;
    border: none;
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: #f7d4ea;
  }

  .card:hover {
    height: 230px;
    width: 280px;
    border-radius: 25px;
  }

  .miguel {
    height: 50px;
    padding-top: 4px;
  }

  .miguel:hover {
    height: 230px;
    width: 300px;
    border-radius: 25px;
  }

  .card-lugar p {
    position: relative;
    display: block;
    transition: all .3s ease;
    padding: 0 0;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
  }

  .card-lugar {
    position: relative;
  }

  .card-lugar:before,
  .card-lugar:after {
    content: ´´;
    position: absolute;
    opacity: .7;
  }

  .ruta {
    background-color: #f7d4ea;
    padding: 5px 10px;
    margin: 5px 0;
    font-size: 13px;
  }

  .ruta:nth-child(1) {
    padding: 10px;
    line-height: 1.5;
  }

  .card-direccion {
    margin: 10px 0;
  }

  .card-acciones {
    text-align: center;
    margin: 5px 0;
  }

  .llegar {
    background-color: #FF4AB2;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .llegar:hover {
    cursor: pointer;
    scale: 1.1;
  }

  .llegar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
  }

  .mapa {
    text-align: center;
    margin: 20px 10px;
    height: 500px;
    display: flex;
    justify-content: center;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* CONTACTO */

  .contacto-02 {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .contacto-02 h1 {
    color: #FF4AB2;
    text-shadow: none;
    font-size: 35px;
    padding-top: 10px;
  }

  .llama {
    margin-bottom: 20px;
    margin-left: 0;
    text-align: center;
  }

  .llama h4 {
    color: #FF4AB2;
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
  }

  .llama p {
    padding: 5px 0;
  }

  .llama img {
    max-width: 18px;
  }

  .llama a {
    color: black;
    text-decoration: none;
    padding-left: 8px;
    font-size: 15px;
  }

  .tel {
    text-align: center;
  }

  .tel h4 {
    margin-top: 50px;
  }

  .whats {
    background-color: #FF4AB2;
    border-style: none;
    margin: 10px 0;
    padding: 8px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .whats a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .whats img {
    max-width: 28px;
    margin-right: 2px;
  }

  .phone {
    display: flex;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    justify-content: center
  }

  .phone img {
    max-width: 20px;
    margin: 0 10px;
  }

  .phone p {
    text-align: center;
    padding: 0 !important;
    margin-bottom: 8px !important;
    margin-top: 8px !important;
  }

  .coroona img {
    max-width: 70px;
    text-align: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 80px;
  }

  .siguenos {
    text-align: center;
    margin-bottom: 100px;
  }

  .siguenos h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .follow img {
    max-width: 30px;
    display: inline;
    margin-right: 10px;
    margin-left: 10px;
  }

  .follow a {
    text-decoration: none;
  }

}


@media (max-width: 375px) {

  /* GENERAL */

  h2 {
    font-size: 25px;
    padding-top: 10px;
    padding-bottom: 30px;
  }

  /* NAV */

  .navbar-brand img {
    height: 45px;
    margin: 7px 30px
  }

  .navbar-toggler {
    margin: 0 20px;
    margin-top: 7px;
  }

  .navbar-nav {
    text-align: center;
    margin: 10px 0;
  }

  .nav-item a {
    font-size: 14px;
  }

  .nav-item {
    margin: 8px 0;
  }

  .nav-item:last-child {
    margin-left: 0px;
  }

  /* HEADER */

  .img-1 {
    height: 500px;
  }

  .espera {
    margin-left: 40px;
  }

  .parallax h3 {
    text-align: left !important;
    font-size: 40px;
    height: 42px;
  }

  .parallax h1 {
    font-size: 50px;
  }

  .parallax p {
    font-size: 16px;
  }

  .parallax a {
    font-size: 17px;
    padding: 15px 30px;
  }

  /* DESCRIPCIÓN */

  .container p {
    font-size: 14px;
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .descripcion img {
    max-width: 30px;
    padding-bottom: 30px;
  }

  /* CLIENTES */

  .back {
    background-color: #F3F3F3;
    padding: 30px 0;
  }

  .clientes img {
    width: 100%;
    max-width: 105px;
  }

  /* RESEÑAS */

  .swiper-button-next,
  .swiper-button-prev {
  top: 60% !important;
  transform: translateY(-50%);
  }

  .carousel-container {
    max-width: 340px;
  }

  .carousel-container h2 {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .carousel-item {
    padding: 30px 30px;
    margin: 20px 30px;
  }

  .carousel-item h5 {
    font-size: 18px;
    margin: 10px 0;
  }

  .carousel-item p {
    font-size: 13px;
    width: 222px;
    height: 116px;
    margin-bottom: 25px;
  }

  .control-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
    margin: 0;
  }

  /* BOTÓN UP */

  .control-arriba {
    width: 32px;
    height: 32px;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .control-arriba a {
    margin-bottom: 50px;
  }

  /* FOOTER */

  .final {
    padding-bottom: 30px;
  }

  .foot {
    padding-top: 30px;
    padding-left: 20px;
    justify-content: left !important;
  }

  h4 {
    font-size: 14px;
  }

  .logo {
    max-width: 150px;
    margin: 25px 0;
  }

  .contact {
    margin-bottom: 25px;
    margin-left: 0;
  }

  .contacto img {
    max-width: 15px;
    margin-right: 8px;
    margin-top: 8px;
  }

  .icono {
    padding-top: 0;
  }

  .contacto p {
    font-size: 14px;
    text-align: center;
    margin: 0 0;
  }

  .linkks {
    margin-bottom: 25px;
    margin-left: 0;
  }

  a.qlink {
    font-size: 14px;
    color: white;
    text-decoration: none;
  }

  .redes img {
    max-width: 35px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* NOSOTROS */

  h3 {
    font-size: 20px;
    text-align: center;
    margin-left: 0;
  }

  .nosotros {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .nosotros h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 30px;
    padding-top: 10px;
  }

  .nos {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nos p {
    padding: 0 12px;
  }

  .autos {
    text-align: center;
    align-items: center;
  }

  .autos img {
    max-width: 200px;
  }

  .misionvision {
    margin: 35px 0;
  }

  .misionvision p {
    padding-top: 5px;
    max-width: 700px;
    text-align: center;
  }

  .mision {
    padding: 25px 15px;
    text-align: center;
  }

  .mision p {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .vsn {
    flex-direction: column-reverse;
  }

  .vision {
    text-align: center;
    padding: 25px 15px;
  }

  .vision h3 {
    text-align: center;
    margin-left: 0;
  }

  .vision p {
    padding: 0 4px;
    margin: 0 4px;
  }

  .valores {
    padding-top: 15px;
    padding-left: 35px;
    padding-right: 18px;
  }

  .valores ul {
    font-size: 16px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* SERVICIOS */

  h5 {
    font-size: 15px;
    font-weight: 700;
  }

  .row {
    justify-content: center;
    margin: 0 0;
  }

  .servicios {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .servicios h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 30px;
    padding-top: 10px;
  }

  .estacionamiento {
    display: flex;
    margin: 30px 0;
  }

  .estacion {
    padding: 0;
    text-align: center;
  }

  .estacion img {
    padding: 0 0;
    max-width: 300px;
  }

  .estacion p {
    max-width: 375px;
    font-size: 14px;
    padding: 10px 10px;
  }

  .punto {
    padding: 0;
  }

  .iconos {
    max-width: 100px;
    padding: 10px 0;
    margin: 20px 0;
  }

  .texto-02 {
    max-width: 375px;
    padding: 0 0;
  }

  .texto-02 h4 {
    font-size: 17px;
    font-weight: 700;
    padding: 0 30px;
  }

  .texto-02 p {
    font-size: 14px !important;
  }

  .valet {
    margin-bottom: 30px;
  }

  .valett {
    flex-direction: column-reverse
  }

  .valet-parking {
    padding-left: 15px;
    padding-top: 30px;
    text-align: center;
  }

  .valet-parking p {
    font-size: 15px;
    padding: 10px 8px;
    margin: 10px 0;
  }

  .valet-img img {
    max-width: 350px;
  }

  .experiencia {
    text-align: center;
  }

  .experiencia h2 {
    margin-top: 30px;
    padding-bottom: 15px;
  }

  .experiencia img {
    max-width: 60px;
    margin: 10px 0;
  }

  .exp {
    margin: 20px 7px;
    max-width: 160px;
    background-color: #F5F5F5;
    border-radius: 20px 20px 20px 20px;
  }

  .exp p {
    font-size: 11px;
  }

  .info {
    background-color: #FF4AB2;
    border-style: none;
    margin: 20px 0;
    margin-top: 20px;
    padding: 6px 50px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .info a {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }

  .info img {
    max-width: 25px;
    margin-right: 13px;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* UBICACIONES */

  .ubicaciones {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .ubicaciones h1 {
    color: #FF4AB2;
    ;
    text-shadow: none;
    font-size: 30px;
    padding-top: 10px;
  }

  .direc {
    display: grid;
    grid-template-columns: 1fr;
    width: 375px;
    gap: 20px;
    margin: 20px 0;
    justify-items: center;
    align-items: center;
  }

  .direct {
    display: grid;
    grid-template-columns: 1fr;
    width: 375px;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    justify-items: center;
    align-items: center;
  }

  .tarje {
    margin-bottom: 15px;
  }

  .card {
    height: 46px;
    overflow: hidden;
    margin: auto;
    padding: 12px 40px;
    border-radius: 40px;
    border: none;
    transition: all .4s ease-in-out;
    text-align: center;
    background-color: #f7d4ea;
  }

  .card:hover {
    height: 230px;
    width: 280px;
    border-radius: 25px;
  }

  .miguel {
    height: 50px;
    padding-top: 4px;
  }

  .miguel:hover {
    height: 230px;
    width: 300px;
    border-radius: 25px;
  }

  .card-lugar p {
    position: relative;
    display: block;
    transition: all .3s ease;
    padding: 0 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
  }

  .card-lugar {
    position: relative;
  }

  .card-lugar:before,
  .card-lugar:after {
    content: ´´;
    position: absolute;
    opacity: .7;
  }

  .ruta {
    background-color: #f7d4ea;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }

  .ruta:nth-child(1) {
    padding: 10px;
    line-height: 1.5;
  }

  .card-direccion {
    margin:0;
  }

  .card-acciones {
    text-align: center;
    margin: 5px 0;
  }

  .llegar {
    background-color: #FF4AB2;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .llegar:hover {
    cursor: pointer;
    scale: 1.1;
  }

  .llegar a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
  }

  .mapa {
    padding: 10px 20px;
    text-align: center;
    margin: 60px 0;
    width: 375px;
    height: 400px;
    display: flex;
  }

  /*---------------------------------------------------*/
  /*---------------------------------------------------*/
  /*---------------------------------------------------*/

  /* CONTACTO */

  .contacto-02 {
    background-image: none;
    width: 350px;
    height: 60px;
    margin-top: 30px;
  }

  .contacto-02 h1 {
    color: #FF4AB2;
    text-shadow: none;
    font-size: 30px;
    padding-top: 10px;
  }

  .llama {
    margin-bottom: 20px;
    margin-left: 0;
    text-align: center;
  }

  .llama h4 {
    color: #FF4AB2;
    font-size: 18px;
    font-weight: 700;
    margin-top: 30px;
  }

  .llama p {
    padding: 5px 0;
  }

  .llama img {
    max-width: 18px;
  }

  .llama a {
    color: black;
    text-decoration: none;
    padding-left: 8px;
    font-size: 14px;
  }

  .tel {
    text-align: center;
  }

  .tel h4 {
    margin-top: 50px;
  }

  .whats {
    background-color: #FF4AB2;
    border-style: none;
    margin: 10px 0;
    padding: 8px 60px;
    border-radius: 40px 40px 40px 40px;
    display: inline-flex;
    text-align: center;
    align-items: center;
  }

  .whats a {
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
  }

  .whats img {
    max-width: 28px;
    margin-right: 2px;
  }

  .phone {
    display: flex;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    justify-content: center
  }

  .phone img {
    max-width: 20px;
    margin: 0 10px;
  }

  .phone p {
    text-align: center;
    padding: 0 !important;
    margin-bottom: 8px !important;
    margin-top: 8px !important;
  }

  .coroona img {
    max-width: 70px;
    text-align: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 80px;
  }

  .siguenos {
    text-align: center;
    margin-bottom: 100px;
  }

  .siguenos h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .follow img {
    max-width: 30px;
    display: inline;
    margin-right: 10px;
    margin-left: 10px;
  }

  .follow a {
    text-decoration: none;
  }

}