/* CSS Document */
@charset "utf-8";

:root {
  --red: #81000b;
  --red-medium: #c2131b;
  --orange: #f6911e;
  --yellow: #f79f1f;

  --grey: #666666;
  --grey-light: #dadada;
  --grey-hard: #424243;

  --blue: #1c7ed6;
  --green: #25d366;
  --green-h: #128c7e;

  --black: #000000;
  --white: #ffffff;

  /* --font-gral: "Montserrat", sans-serif; */
  --font-gral: "Inter", sans-serif;
  /* --font-title: "Roboto", sans-serif; */
}

*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* CONTENEDOR GENERAL */
.contenedor {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contenedor {
    max-width: 120rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-gral);
}

p,
a,
span, ul, li{
  font-family: var(--font-gral);
}


#top {
  scroll-margin: 80px;
}

/* Estilos Header */
header {
  position: fixed;
  width: 100vw;
  z-index: 888;
  height: 80px;
  top: 0px;
  background-color: var(--white);
  display: flex;
}

.navmenu {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
}

.navmenu__logotipo {
  width: 40%;
  height: auto;
}

@media (min-width: 768px) {
  .navmenu__logotipo {
    width: 17%;
    height: auto;
  }
}

.menu__mobil {
  width: 10%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: end;
}

.menu__mobil img {
  width: auto;
  height: 30px;
}

@media (min-width: 768px) {
  .menu__mobil {
    display: none;
  }
}

.links {
  display: none;
}

@media (min-width: 768px) {
  .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 16px;
  }
}

.links__movil {
  width: 100%;
  height: 100vh;
  flex-direction: column;
  position: fixed;
  z-index: 999;
  /* background: linear-gradient(0deg, #f6911e 5%, #f79f1f); */
  background-color: #f79f1f;
  top: 0;
  right: -100%;
  display: flex;
  justify-content: center;
}

.links__logotipo{
  width: 50%;
  margin:0 auto;
}

.links__movil a {
  color: var(--white);
  font-size: 2rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.show {
  right: 0;
  transition: all 0.3s;
}

.hidden {
  right: -100%;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .links__movil {
    display: none;
  }
}

.links a {
  font-size: 15px;
  text-decoration: none;
  color: var(--black);
}

@media (min-width: 768px) and (max-width: 1020px) {
  .links a {
    font-size: 11px;
    text-decoration: none;
    color: var(--black);
  }
}

.links a:hover {
  color: var(--orange);
}

.links__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

a.links__contact{
  font-size: 13px;
}

.links__link {
  font-weight: 600;
}

.cotizacion {
  background-color: var(--white);
  border-radius: 2px;
  border: solid 1px var(--grey-light);
  position: fixed;
  z-index: 999;
  right: 3%;
  top: 50px;
  width: 300px;
  padding: 10px;
}

.cotizacion h3 {
  font-size: 14px;
  color: var(--grey-hard);
  text-align: center;
}

.cotizacion__lista {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.cotizacion__item {
  border-bottom: solid 1px var(--grey-light);
  padding: 10px 0;
}

.cotizacion__item:hover {
  background-color: #eeeeee;
}

.cotizacion__info {
  display: grid;
  grid-template-columns: 180px 30px 40px;
  column-gap: 10px;
  align-items: baseline;
  padding: 0 5px;
}

.cotizacion__info span:nth-of-type(1) {
  font-size: 12px;
  color: var(--blue);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.cotizacion__info span:nth-of-type(2) {
  font-size: 12px;
  color: var(--grey);
  text-align: center;
}

.cotizacion__info a {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: var(--red-medium);
  cursor: pointer;
}

.quotes_action {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.btnSendQuote {
  font-size: 14px;
  border: none;
  font-family: var(--font-gral);
  color: var(--white);
  font-weight: 400;
  display: block;
  text-align: center;
  padding: 8px 26px;
  border-radius: 4px;
  background-color: var(--red-medium);
  width: 100%;
  cursor: pointer;
}

/* Estilos Banner Slider */
.slider {
  width: 90%;
  height: 400px;
  margin-top: 90px;
  position: relative;
  left: 5%;
  border-radius: 20px;

  display: grid;
  place-items: center;
}

.slider__content {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  grid-area: 1 / 1; */
  width: 100%;
  height: 400px;
  background-image: url(../banners/banner-instantcar-solicitar-credito-auto-movil.jpg);
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 768px) {
  .slider__content {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    grid-area: 1 / 1; */
    width: 100%;
    height: 400px;
    background-image: url(../banners/banner-instantcar-solicitar-credito-auto.jpg);
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

.slider__content h1 {
  font-size: 5rem;
  font-style: italic;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 auto;
  margin-bottom: -20px;
  text-align: center;
}

@media (min-width: 768px) {
  .slider__content h1 {
    font-size: 72px;
    width: 80%;
  }
}

.slider__content h2 {
  font-size: 3rem;
  color: var(--orange);
  margin: 0 auto;
  margin-bottom: -20px;
  text-align: center;
  font-style: italic;
}

@media (min-width: 768px) {
  .slider__content h2 {
    font-size: 58px;
    width: 100%;
  }
}

.slider__content p {
  font-size: 5rem;
  font-style: italic;
  color: var(--white);
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .slider__content p {
    font-size: 40px;
  }
}

.slider__content a {
  color: var(--white);
  background-color: var(--orange);
  padding: 8px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 30px;
  font-family: var(--font-gral);
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 768px) {
  .slider__content a {
    font-size: 24px;
  }
}


/* Secci¨®n de Categor¨ªas Unidades */
.categorias {
  position: relative;
  padding: 30px 0 20px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  scroll-margin: 80px;
}

.categorias > p {
  text-align: center;
  font-size: 28px;
  color: var(--grey);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .categorias > p {
    width: 50%;
  }
}

.list__categoria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: auto;
  gap: 2em;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.paq {
  padding: 6%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1rem;
  cursor: pointer;
}

.head__paq {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.categoria-img__1{
  width: 122px;
}

.categoria-img__2, .categoria-img__3, .categoria-img__4 {
  width: 140px;
}

.list__paq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.list__paq span {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 600;
  padding-bottom: 0.5em;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}

.paq:hover .list__paq span{
  color: var(--orange);
}

/* Services */
.services {
  position: relative;
  padding: 80px 0;
  background-color: var(--grey-light);
  scroll-margin: 80px;
}

.services > h2 {
  text-align: center;
  font-size: 28px;
  color: var(--grey);
  margin: 0 auto;
  margin-bottom: 20px;
}

.grid-unidades__agregadas{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  column-gap: 30px;
  row-gap: 20px;
  justify-content: center;
  margin:0 auto;
  margin-bottom: 50px;
  width: 70%;
}

@media (min-width: 768px) {
  .grid-unidades__agregadas{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: auto;
    column-gap: 30px;
    row-gap: 20px;
    justify-content: center;
    margin:0 auto;
    margin-bottom: 50px;
    width: 90%;
  }
}

.card-unidad{
  padding: 12px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 3px 6px 12px 0 rgba(0, 0, 0, .1);
}

.card-unidad__image{
  width: 100%;
  margin-bottom: 18px;
}

.card-unidad__image img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.card-unidad__info{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.card-unidad__name{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.unidad-name__brand{
  color: var(--orange);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.unidad-name__model{
  color: var(--black);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.unidad-name__version{
  color: var(--grey-hard);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

.card-unidad__price{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.unidad-price__hitch{
  color: var(--grey-hard);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.unidad-price__price{
  color: var(--orange);
  font-weight: 700;
  font-size: 22px;
}

.unidad-price__price::first-letter{
  font-size: 16px;
  vertical-align: top;
}

.card-unidad__link a{
  text-decoration: none;
  font-size: 14px;
  color: var(--blue);
}

/* UNIDADES VISTAS RECIENTEMENTE */
.cars-recently{
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 6px;
  box-shadow: 3px 6px 12px 0 rgba(0, 0, 0, .1);
  padding: 12px;
  width: 70%;
}

@media (min-width: 768px) {
  .cars-recently{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 90%;
    margin: auto;
  }
}

.cars-recently__title{
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cars-recently__title{
    width: 20%;
    margin: 0 auto;
  }
}

.cars-recently__title h3{
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--orange);
}

@media (min-width: 768px) {
  .cars-recently__title h3{
    width: 70%;
    margin: 0 auto;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: var(--orange);
  }
}

.grid-card__thumbs{
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

@media (min-width: 768px) {
  .grid-card__thumbs{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 40px;
    width: 80%;
  }
}

.card-thumb__car{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  column-gap: 12px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 768px) {
  .card-thumb__car{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
  }
}

.card-thumb__image{
  width: 200px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .card-thumb__image{
    width: 140px;
    margin-bottom: 10px;
  }
}

.card-thumb__image img{
  width: 100%;
  height: 87px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.card-thumb__name{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.card-thumb__model{
  color: var(--black);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.card-thumb__hitch{
  color: var(--grey-hard);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 500;
}

.card-thumb__price{
  color: var(--orange);
  font-weight: 600;
  font-size: 12px;
}

.card-thumb__price::first-letter{
  font-size: 10px;
  vertical-align: top;
}

/* BANNER PROMOTIONS */
.banner__promotion {
  width: 100%;
  height: auto;
  margin: 80px 0;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .banner__promotion {
    flex-direction: row;
  }
}

.banner__image {
  position: relative;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .banner__image {
    width: 50%;
  }
}

.banner__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.banner__info {
  width: 100%;
  height: 300px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: var(--yellow);

  margin-top: -2px;
}

@media (min-width: 768px) {
  .banner__info {
    width: 50%;
    height: auto;
  }
}

.banner__info h2 {
  font-size: 48px;
  font-family: var(--font-gral);
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 970px) {
  .banner__info h2 {
    font-size: 38px;
  }
}

.banner__info h3 {
  font-size: 45px;
  font-family: var(--font-gral);
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 970px) {
  .banner__info h3 {
    font-size: 35px;
  }
}

.banner__info h4 {
  font-size: 62px;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 970px) {
  .banner__info h4 {
    font-size: 52px;
  }
}

/* BRANDS */

.towcar {
  position: relative;
  padding: 100px 0;
  background-image: url(../banners/servicio-grua-seccion.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  scroll-margin: 80px;
}

.towcar h2 {
  text-align: center;
  font-size: 5rem;
  color: var(--yellow);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.header__tow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .header__tow {
    flex-direction: row;
  }
}

.header__tow p {
  font-size: 2.4rem;
  color: var(--white);
  margin-right: 14px;
}

.header__tow img {
  width: auto;
}

.towcar__contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}

.towcar__contact h4 {
  text-align: center;
  font-size: 3rem;
  color: var(--white);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 10px;
}

.tow_column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.towcar__number a:nth-of-type(1) {
  margin-bottom: 20px;
}

#towdia,
#townoche {
  display: none;
}

.towcar__number a {
  font-size: 3.8rem;
  font-weight: 600;
  font-family: var(--fonttitle);
  color: var(--green);
  text-decoration: none;
  border: solid 3px var(--green);
  background-color: var(--black);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 8px 20px;
  gap: 10px;
}

/* SYSTEM FORM CONTACT ALL */

.system__contact {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 50px 0;
}

.banner_bottom{
  border: solid 1px var(--grey-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  height: auto;
  margin-bottom: 50px;
  overflow: hidden;
}

@media (min-width: 768px) {
    .banner_bottom{
      border: solid 1px var(--grey-light);
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      border-radius: 6px;
      height: 345px;
      margin-bottom: 50px;
    }
}

.banner-bottom__info{
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  gap: 20px;
}

@media (min-width: 768px) {
  .banner-bottom__info{
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 50%;
    gap: 20px;
  }
}

.banner-bottom__info h3{
    text-align: center;
    font-size: 28px;
    color: var(--grey-hard);
    margin: 0 auto;
}

.banner-bottom__info span{
    text-align: center;
    font-size: 28px;
    color: var(--orange);
    font-weight: 600;
    margin: 0 auto;
}

.banner-bottom__info p{
    text-align: center;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    margin: 0 auto;
}

.banner-bottom__info a{
    text-align: center;
    font-size: 16px;
    color: var(--orange);
    font-weight: 600;
    margin: 0 auto;
    border: solid 2px var(--orange);
    border-radius: 6px;
    padding: 10px 16px;
    text-decoration: none;
}

.banner-bottom__img{
  width: 500px;
}

.banner-bottom__img img{
  width: 100%;
  height: 346px;
  object-fit: cover;
  object-position: top;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.block-contact{
    border: solid 1px var(--grey-light);
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    border-radius: 6px;
    box-shadow: 3px 4px 10px 0 rgba(0, 0, 0, .1);
    padding: 20px;
}

@media (min-width: 768px) {
  .block-contact{
    border: solid 1px var(--grey-light);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    box-shadow: 3px 4px 10px 0 rgba(0, 0, 0, .1);
    padding: 20px;
  }
}

.block-contact__btn{
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 3px;
}

.block-contact__btn img{
  width: 46px;
  height: auto;
}

@media (min-width: 768px) {
  .block-contact__btn img{
    width: 26px;
    height: auto;
  }
}

.bcontact-btn__info{
  display: none;
}

@media (min-width: 768px) {
  .bcontact-btn__info{
    display: flex;
    flex-direction: column;
  }
}

.bcontact-btn__info span{
  color: var(--grey);
  font-weight: 800;
  font-size: 12px;
}

.bcontact-btn__info p{
  color: var(--grey-hard);
  font-weight: 400;
  font-size: 13px;
}

.contact-btn{
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-btn{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.contact-btn a{
    text-align: center;
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    margin: 0 auto;
    border: solid 2px var(--orange);
    background-color:  var(--orange);
    border-radius: 6px;
    padding: 10px 16px;
    text-decoration: none;
    width: 100%;
}

@media (min-width: 768px) {
  .contact-btn a{
    text-align: center;
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
    margin: 0 auto;
    border: solid 2px var(--orange);
    background-color:  var(--orange);
    border-radius: 6px;
    padding: 10px 16px;
    text-decoration: none;
  }
}



/* Form Contacto */

/* Card Auto Cotizar */
.autoCotizar{
  display: flex;
  flex-direction: row;
  margin: 50px 0;
}

.autoCotizar{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.autoCotizar h5{
  font-size: 22px;
  color: var(--grey-hard);
}

.cardAutoCotizar{
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  border: solid 1px var(--grey-light);
  border-radius: 6px;
  padding: 10px;
}

.cotizar-unidad__image{
  width: 250px;
  height: 144px;
}

  .cotizar-unidad__image img{
    width: 100%;
    height: 144px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
  }

  .cotizar-unidad__info{
    width: 45%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .cotizar-unidad__name {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cotizar-unidad__name span{
    padding-bottom: 4px;
    border-bottom: solid 1px var(--grey-light);
  }

  .cotizar__brand{
    font-size: 16px;
    color: var(--grey);
  }

  .cotizar__model{
    font-size: 18px;
    color: var(--black);
  }

  .cotizar__version{
    font-size: 14px;
    color: var(--grey-hard);
  }

  .cotizar-unidad__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cotizar__hitch{
    font-size: 12px;
    color: var(--grey-hard);
  }

  .cotizar__price{
    font-size: 20px;
    font-weight: 400;
    color: var(--orange);
  }

/* Focus Steps */

.formStep2,
.formStep3,
.formStep4{
    display:none;
}

.focusSteps{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}

.focusSteps span{
  width: 24%;
  font-size: 16px;
  background-color: var(--grey-light);
  border: solid 1px var(--grey-light);
  border-radius: 6px;
  padding: 12px 10px;
}

.stepFocus{
  background-color: var(--orange) !important;
  border: solid 1px var(--orange) ;
  color:#fff;
}

.form {
  display: flex;
  flex-direction: column;
}

.form__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
}

@media (min-width: 768px) {
  .form__row {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
}

.form__input {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .form__input {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

.form__input select {
  font-family: var(--font-gral);
  color: var(--grey-hard);
}

.inputText {
  width: 100%;
  padding: 13px;
  font-size: 14px;
  border: 1px solid var(--grey-light);
  border-radius: 6px;
  outline: none;
  font-family: var(--font-gral);
  color: var(--grey-hard);
}

.inputFloat {
  position: absolute;
  top: 40%;
  left: 12px;
  font-size: 14px;
  color: var(--grey);
  pointer-events: none;
  transition: 0.2s ease;
  transform: translateY(-50%);
  font-family: var(--font-gral);
}

.inputFloatArea {
  position: absolute;
  top: 12%;
  left: 12px;
  font-size: 14px;
  color: var(--grey-hard);
  pointer-events: none;
  transition: 0.2s ease;
  transform: translateY(-25%);
  font-family: var(--font-gral);
}

@media (min-width: 320px) and (max-width: 767px) {
  .inputFloat {
    font-size: 14px;
  }
}

.inputText:focus + .inputFloatArea {
  top: -10px;
  left: 6px;
  font-size: 14px;
  color: var(--blue);
  background-color: #fff;
  padding: 5px;
}

.inputText:focus + .inputFloat,
.inputText:valid + .inputFloat {
  top: -2px;
  left: 6px;
  font-size: 14px;
  color: var(--blue);
  background-color: #fff;
  padding: 5px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .inputText:focus + .inputFloat,
  .inputText:not(:placeholder-shown) + .inputFloat {
    font-size: 14px;
  }
}

.inputText:focus {
  border: solid 1px var(--blue);
  padding: 13px;
  font-family: var(--font-gral);
  color: var(--grey);
}

.contentBtn{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.btnSiguiente{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background-color: var(--orange);
  color: var(--white);
  font-size: 16px;
  border: none;
  font-family: var(--font-gral);
  padding: 12px 14px;
  width: 32%;
  border-radius: 6px;

  cursor: pointer;
}


.btnConsulta {
  padding: 12px 14px;
  font-size: 18px;
  font-family: var(--font-gral);
  font-style: italic;
  border: none;
  cursor: pointer;
  width: 100%;
  position: relative;
  background-color: var(--red-medium);
  color: var(--white);
  border: solid 2px var(--red-medium);
  font-weight: 600;
  border-radius: 4px;
}

.btnConsulta:hover {
  background-color: var(--white);
  border: solid 2px var(--red-medium);
  color: var(--red-medium);
}

.btnOff {
  background-color: var(--grey);
  border: solid 2px var(--grey);
}

@media (min-width: 768px) {
  .btnConsulta {
    width: 45%;
  }
}

/* Office Maps */
.office {
  width: 100%;
  height: 300px;
  position: relative;
  margin: 0 auto;
}

.office__map iframe {
  width: 100%;
  height: 300px;
}

/* Footer */

footer {
  background-color: var(--grey);
  padding: 80px 0 50px 0;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer__columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__column__data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

@media (min-width: 768px) {
  .footer__column__data {
    flex-direction: row;
    gap: 50px;
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
}

.footer__logotipo img {
  width: 50%;
  height: auto;
}

.footer__reserved {
  font-size: 12px;
  color: var(--white);
  padding-top: 20px;
  border-top: dotted 2px var(--grey);
}

/* Modal Aviso de Privacidad */
.privacy {
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999;
  background-color: var(--black);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 4px;
  padding: 2rem;
  gap: 10px;
}

@media (min-width: 768px) {
  .privacy {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;

    border-radius: 4px;
    padding: 2rem;
  }
}

.privacy.close {
  display: none;
}

.logotype__privacy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 768px) {
  .logotype__privacy {
    width: 20%;
  }
}

.logotype__privacy img {
  width: 90px;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logotype__privacy img {
    width: 130px;
    height: auto;
    margin: 0 auto;
  }
}

.info__privacy {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .info__privacy {
    width: 60%;
    text-align: left;
  }
}

.info__privacy p {
  color: var(--white);
  font-size: clamp(16px, 2vw, 16px);
}

@media (min-width: 768px) {
  .info__privacy p {
    font-size: clamp(14px, 2vw, 14px);
  }
}

.info__privacy a {
  color: var(--blue);
  font-size: clamp(14px, 2vw, 14px);
  text-decoration: none;
}

.close__privacy {
  color: var(--white);
  background-color: var(--blue);
  font-size: clamp(14px, 2vw, 14px);
  text-decoration: none;
  width: 100%;
  font-family: var(--font-gral);

  border: none;
  display: block;
  padding: 8px 26px;
  border-radius: 4px;

  cursor: pointer;
}

@media (min-width: 768px) {
  .close__privacy {
    width: 20%;
  }
}

/* Bot¨®n WhatsApp */
#btnwhatsapp {
  width: 80px;
  padding: 12px 16px;
  z-index: 98;
  top: 80%;
  right: 10px;
  position: fixed;
  background-color: var(--green);
  border-radius: 4px;
  transform: scale(1);
  transition: all 0.5s ease;
}

#btnwhatsapp:hover {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 12px 21px 40px -24px rgba(0, 0, 0, 0.2);
}

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

.contwhatsapp {
  width: 70%;
  margin-bottom: 10px;
}

.cotiza {
  font-size: 11px;
  color: var(--white);
  text-align: center;
  font-weight: 500;
}


/* Pagina Aviso de Privacidad */
.page {
  height: auto;
  margin: 40px auto;
  margin-top: 120px;
}

.page__block {
  margin-bottom: 30px;
}

.page__block h2 {
  font-size: 22px;
  color: var(--orange);
  text-transform:inherit;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px var(--grey-light);
}

.page__block p {
  font-size: 14px;
  color: var(--grey-hard);
  text-align: justify;
  margin-bottom: 20px;
  line-height: 140%;
}

/*Secci¨®n Errores*/
.alert {
  width: 100%;
  padding: 2%;
  border-radius: 4px;
  position: relative;
  margin-top: 20px;
  font-family: var(--font-gral);
}

.alert div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.alert-success {
  border: solid 3px var(--green);
}

.alert-danger {
  border: solid 3px var(--yellow);
}

.alert div p {
  font-size: 16px;
  color: var(--grey-hard);
}

.dnone {
  display: none !important;
}

.thankYou {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 20%;
}

.thankYou h2 {
  font-size: 22px;
  margin: 20px 0 10px 0;
}

.thankYou p {
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 28px;
}

.thankYou a {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 20px 0;
}

/*Pagina Gracias*/

.page__gracias {
  background-color: var(--black);
  width: 100%;
  height: 100vh;
}

.gracias {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 50px;
}

@media (min-width: 768px) {
  .gracias {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 40%;
  }
}

.image__gracias img {
  width: 200px;
  height: auto;
}

.content__gracias {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .content__gracias {
    flex-direction: column;
    align-items: flex-start;
  }
}

.content__gracias h2 {
  text-align: left;
  font-size: 5rem;
  color: var(--green);
  text-transform: uppercase;
  font-style: italic;
}

.content__gracias p {
  font-size: 2rem;
  color: var(--white);
  font-style: italic;
  font-family: var(--fonttitle);
  text-align: center;
}

@media (min-width: 768px) {
  .content__gracias p {
    text-align: left;
  }
}

.content__gracias a {
  color: var(--green);
  border: solid 2px var(--green);
  background-color: var(--black);
  padding: 8px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 2rem;
  font-family: var(--font-bold);
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
}


.bloqCredito {
  width: 90%;
  margin-top: 120px;
  position: relative;
}

.bloqCredito h2{
  font-size: 28px;
  color: var(--orange);
  margin: 0px;
  margin-bottom: 8px;
}

.bloqCredito p{
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  color: var(--grey-hard);
  font-weight: 400;
  margin: 0 auto;
}

.bloqCredito span{
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  color: var(--grey-hard);
  font-weight: 400;
  margin: 0 auto;
}

.notesForm{
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.notesForm p{
  text-align: left;
  color: var(--black);
  font-size: 14px;
}

.notesForm ul{
  list-style: none;
  width: fit-content;
}

.notesForm ul li{
  text-align: left;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: solid 1px var(--grey-light);
}



/* Pagina Servicios */
.page-tipo__autos{
  width: 100%;
  position: relative;
  margin-top: 90px;
  padding-bottom: 10px;
  margin-bottom: 90px;
}

.page-tipo__info{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 0 28px 30px;
}

h2.title-tipo{
  font-size: 32px;
  font-weight: 500;
  color: var(--grey);
}

.title-tipo > span{
  text-transform: capitalize;
  color: var(--orange);
  font-weight: 600;
}

.page-tipo__info p{
  font-size: 18px;
  color: var(--grey-hard);
}

.content-tipos__autos{
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: auto;
  grid-template-areas: "navbarlist mainautos";
}

.list-tipo{
  grid-area: navbarlist;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;

  height: fit-content;
  max-height: 100dvh;
  overflow-y: auto;
  scrollbar-gutter: stable;
  
  top: 80px;

  row-gap: 14px;
  overflow: hidden;
}

.cat {
  padding: 6%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1rem;
  cursor: pointer;
}

.head__cat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.cat-img__1{
  width: 72px;
}

.cat-img__2, .cat-img__3, .cat-img__4 {
  width: 82px;
}

.list__cat{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.list__cat span {
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 600;
  padding-bottom: 0.5em;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
}

.paq:hover .list__paq span{
  color: var(--orange);
}

.grid-unidades__tipo{
  grid-area: mainautos;
  overflow-y: auto;
  overflow-x: hidden;

  padding: 14px 14px 24px 14px;
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: 1fr;
  column-gap: 20px;
  row-gap: 20px;
  justify-content: center;
  width: 100%;
  min-height: 600px;
  transition: opacity .3s ease;
}


/* Pagina Auto Seleccionado */
.page-auto__autos{
  /* width: 100%; */
  position: relative;
  margin-top: 90px;
  padding-bottom: 10px;
  margin-bottom: 90px;
}

.breadcrumbs{
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  font-size: 11px;
  margin-bottom: 16px;
  color: var(--grey);
}

.breadcrumbs a{
  text-decoration: none;
  text-transform: uppercase;
  color: var(--blue);
}

.page-auto__sections{
  display: flex;
  flex-direction: column;
  row-gap: 22px;
  /* justify-content: space-between; */
}

@media (min-width: 768px) {
  .page-auto__sections{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 32px;
  }
}

/* .page-auto__image{
  width: 50%;
  height: auto;
} */

/* .page-auto__image img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
} */

.page-auto__image {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .page-auto__image {
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
}

.main-image {
  width: 100%;
  height: 300px;
}

@media (min-width: 768px) {
  .main-image {
    width: 100%;
    height: 400px;
  }
}

.main-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
  }
}

.thumbnails {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2px;
}

@media (min-width: 768px) {
  .thumbnails {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
  }
}

.thumb {
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid transparent;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .thumb {
    width: 60px;
    height: 48px;
    cursor: pointer;
    border: 1px solid transparent;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
  }
}

.thumb:hover {
  border: 1px solid var(--blue);
}



.page-auto__info{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .page-auto__info{
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.page-auto__name span{
  color: var(--orange);
  font-size: 18px;
  text-transform: uppercase;
}

.page-auto__name h3{
  color: var(--black);
  font-size: 24px;
}

.page-auto__name p{
  color: var(--grey-hard);
  font-size: 18px;
}

.page-auto__feature p{
  color: var(--grey-hard);
  font-size: 14px;
  border-bottom: 1px solid var(--grey-light);
  padding-bottom: 3px;
  margin-bottom: 10px;
}

.page-auto__price span{
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}

.page-auto__price h5{
  color: var(--orange);
  font-size: 30px;
  font-weight: 800;
}

.page-auto__price h5::first-letter{
  font-size: 22px;
  vertical-align: top;
}

.gpo-btns{
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.page-auto__btn{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--orange);
  border-radius: 6px;
  padding: 8px 24px;

  text-decoration: none;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.page-auto__btn_w{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;

  background-color: var(--green);
  border-radius: 6px;
  padding: 8px 24px;

  text-decoration: none;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.page-auto__btn_w img{
  width: 22px;
  height: auto;
}