@charset "UTF-8";
/* Generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
  background-color: black;
}

a {
  cursor: pointer;
  text-decoration: none !important;
}

.sociales a {
  cursor: pointer;
  text-decoration: none !important;
  color: #141414 !important;
}

section {
  background-color: #fff;
}

ul {
  list-style: none;
}

.lineaTitulo {
  display: block;
  border: 1px solid #000;
  max-width: 100px;
  margin: 0 auto;
}

.centrarVertical {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Animaciones */
.btn-dark {
  transition: all 500ms !important;
}
.btn-dark:hover {
  transform: translateY(-5px);
  background-color: #141414 !important;
}

.card {
  transition: all 500ms !important;
}
.card:hover {
  transform: scale(1.03);
}
.card:hover img {
  filter: grayscale(60%);
}

img {
  transition: all 500ms !important;
}

/* Header */
.header {
  background-color: #fff;
  padding: 0px 40px;
  border-bottom: solid 1px #e4e4e4;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header nav.navbar {
  background-color: #fff !important;
}
.headerLogo {
  max-width: 35px;
  max-height: 35px;
}

/* Footer */
.footer {
  background-color: #141414;
  color: #e4e4e4;
  font-size: 12px;
  padding: 8px;
  text-align: center;
}

/* __________ PAGINAS _______ */
/* Main */
main {
  height: 220px;
}
main .carousel-inner .carousel-item {
  max-height: 220px;
}

@media (min-width: 768px) {
  main {
    height: 600px;
  }
  main .carousel-inner .carousel-item {
    max-height: 600px;
  }
}
/* Seccion 1 */
.cardDiferenciadores {
  border: none !important;
}
.cardDiferenciadores .imgDiferenciadores {
  margin: 0 auto;
  max-width: 160px;
  padding-bottom: 10px;
}

/* Seccion 2 */
.paralax {
  height: 40vh;
  background-image: url("../images/main.jpg");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.paralax p {
  padding: 10px 10px;
  color: #e4e4e4;
  font-size: 30px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .paralax p {
    padding: 5px 80px;
    font-size: 50px;
    margin-bottom: 30px;
  }
}
/* Seccion 4 */
.servicios {
  background-color: #f5f5f5;
}

/* PAGINAS INTERNAS */
/* Generales */
.hero {
  height: 200px;
  background-image: url("../images/main.jpg");
  background-position: center;
  background-size: cover;
}
.heroContenido {
  width: 100%;
  height: 30%;
  text-align: center;
  position: absolute;
  top: 10%;
}
.heroContenido h1 {
  color: #fff;
  font-size: 65px;
  font-weight: 400;
  padding-bottom: 5px;
}

/* Página Contacto */
.mapa {
  width: 100%;
  margin: 35px 0px;
}

.sociales img {
  cursor: pointer;
  max-width: 40px;
  filter: grayscale(0%);
  margin-bottom: 5px;
  transition: all 300ms;
}
.sociales img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .sociales img {
    filter: grayscale(100%);
  }
}/*# sourceMappingURL=main.css.map */