/*===================*/
/* colores generales */
/*===================*/
/*===================*/
/* textos */
/*===================*/
/*===================*/
/* global */
/*===================*/
/*===================*/
/* carrusel */
/*===================*/
/*===================*/
/* header nav */
/*===================*/
/*===================*/
/* Footer */
/*===================*/
*,
h1,
h2,
h3,
h4,
h5,
p,
ul,
figure {
  margin: 0px;
  padding: 0px;
}

main {
  margin-top: 76px;
}

@media (max-width: 991px) {
  main {
    margin-top: 70px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--textoOscuro);
  background-color: var(--backgroundBody);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*========================*/
/* efecto aparecer */
/*========================*/
.hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/*========================*/
/* Home */
/*========================*/
.home-titulo1 {
  color: var(--color1);
  font-weight: 700;
  font-size: 25px;
}

.home-titulo2 {
  color: var(--color1);
  font-weight: 700;
  font-size: 20px;
}

.home-titulo3 {
  color: var(--textoOscuro);
  font-weight: 700;
  font-size: 25px;
}

.home-spanTitulo3 {
  color: var(--color1);
}

.home-titulo4 {
  color: var(--textoOscuro);
  font-weight: 500;
  font-size: 20px;
}

.home-contBtn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-btn {
  background-color: var(--color2);
  color: var(--textoClaro);
  width: 200px;
  border: none;
  border-radius: 5px;
  height: 35px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  &:hover {
    background-color: var(--color2Hover);
    color: var(--textoClaro);

  }
}


/*========================*/
/* seccion arriendo de vehiculos */
/*========================*/
.home-contBackgroundServicios {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 270px;
}

.home-filtroBackgroundServicios {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.home-contContServicios {
  position: relative;
  z-index: 9;
}

/*========================*/
/* seccion servicios */
/*========================*/
.home-cardServicio {
  background-color: var(--color3);
  padding: 2rem 1rem;
  border-radius: 5px;
  box-shadow: var(--sombra);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-listaCardServicio {
  list-style: none;
}

.home-elemListaCardServicio {
  display: flex;
  align-items: center;
}

.home-elemListaCardServicio svg {
  max-width: 30px;
  min-width: 30px;
}