@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar {
  width: 0px;
}

* {
  box-sizing: border-box;
}

.snow-container {
  position: absolute;
  top: 0;
  overflow: hidden;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.snowflake {
  position: absolute;
  width: 25px;
  height: 25px;
  animation: fall linear infinite;
  z-index: 900;
}

@keyframes fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}
body {
  margin: 0px;
  font-family: "Space Grotesk";
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.scroll-buton {
  width: 50px;
  height: 50px;
  background-color: black;
  border: 2px solid #2894ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 100px;
  right: 10px;
  border-radius: 8px;
  cursor: pointer;
  visibility: hidden;
  z-index: 999;
}
.scroll-buton svg {
  width: 25px;
  height: 25px;
  color: #2894ff;
}

.active-btn {
  visibility: visible;
}

.mensaje-buton {
  width: 50px;
  height: 50px;
  background-color: black;
  border: 2px solid #2894ff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 999;
}
.mensaje-buton:hover {
  transform: sca;
}
.mensaje-buton svg {
  width: 25px;
  height: 25px;
  color: rgb(14, 166, 14);
}

.nav {
  width: 100vw;
  height: 100px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 25px !important;
  padding-right: 25px !important;
  position: fixed;
  top: 0px;
  z-index: 100;
}
@media screen and (min-width: 786px) {
  .nav {
    justify-content: center;
    border: 0px;
    position: fixed;
    height: 100px;
  }
  .nav .enlaces-index {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .nav .enlaces-index a {
    display: inline !important;
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
  }
  .nav .enlaces-index a:hover {
    border-bottom: 2px solid white;
  }
  .nav .enlaces-index img {
    width: 100px;
  }
}
.nav .enlaces-index {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1000px) {
  .nav .enlaces-index {
    gap: 30px;
  }
}
.nav .enlaces-index a {
  display: none;
}
.nav .enlaces-index img {
  width: 100px;
}

.nav-black {
  background-color: black !important;
}

.content-info {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 520px) {
  .content-info {
    flex-flow: row nowrap;
    justify-content: center !important;
    gap: 20px;
  }
}
@media screen and (min-width: 800px) {
  .content-info {
    gap: 50px;
  }
}
.content-info .logo {
  width: 200px;
  height: 200px;
  position: relative;
  z-index: 910;
}
@media screen and (min-width: 520px) {
  .content-info .logo {
    width: 180px;
    height: 180px;
  }
}
.content-info .logo img {
  width: 100%;
  height: 100%;
}
.content-info .info {
  display: none;
  flex-flow: row wrap;
  justify-content: start;
  align-items: center;
  gap: 20px;
  width: 80%;
  height: 70px;
}
@media screen and (min-width: 786px) {
  .content-info .info {
    display: flex;
  }
}
.content-info .item-info {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: self-start;
  height: 40px;
  gap: 10px;
  margin-top: -30px;
}
@media screen and (min-width: 520px) {
  .content-info .item-info {
    margin-top: 0px;
  }
}
.content-info .item-info svg {
  width: 25px;
  margin-top: 5px;
  color: #2894ff;
}
@media screen and (min-width: 520px) {
  .content-info .item-info svg {
    width: 20px;
  }
}
.content-info .item-info div strong {
  font-size: 14px;
}
.content-info .item-info div p {
  font-size: 13px;
}
.content-info .ecommerce {
  display: none;
}
@media screen and (min-width: 786px) {
  .content-info .ecommerce {
    display: block;
  }
}
.content-info .ecommerce a {
  width: 150px;
  height: 30px;
  font-size: 15px;
  background-color: #2894ff;
  border-radius: 4px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  position: relative;
  z-index: 910;
}
.content-info .ecommerce a:hover {
  transition: all 0.35s ease;
  background-color: #1e1e1e;
}

.btn-nav {
  width: 40px;
  height: 40px;
  z-index: 100;
}
@media screen and (min-width: 786px) {
  .btn-nav {
    display: none;
  }
}
.btn-nav svg {
  width: 100%;
  height: 100%;
  color: white;
  position: relative;
}

.enlaces-active {
  transition: all 0.3s ease;
  transform: translateY(0%) !important;
}

.content-enlaces {
  transition: all 0.3s ease;
  transform: translateY(-1000%);
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transition: all 0.3s ease;
  background-color: white;
  border-left: 1px solid rgba(128, 128, 128, 0.368627451);
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  z-index: 800;
  padding: 20px;
  display: flex;
  flex-flow: column;
}
@media screen and (min-width: 600px) {
  .content-enlaces {
    display: none;
    transition: all 0.3s ease;
    transform: translateX(100vw);
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 50%;
    transition: all 0.3s ease;
    background-color: white;
    border-left: 1px solid rgba(128, 128, 128, 0.368627451);
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    z-index: 800;
    padding: 10px;
    display: flex;
    flex-flow: column;
  }
}
.content-enlaces .header-enlaces {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 786px) {
  .content-enlaces .header-enlaces {
    display: none;
  }
}
.content-enlaces .header-enlaces img {
  width: 100px;
  margin-left: 8px;
}
.content-enlaces .header-enlaces .btn-close-model {
  width: 40px;
  height: 40px;
}
.content-enlaces .header-enlaces .btn-close-model svg {
  width: 100%;
  height: 100%;
}
.content-enlaces .enlaces {
  display: flex;
  flex-flow: column nowrap;
  align-items: self-start;
  justify-content: center;
  gap: 25px;
  padding: 10px;
  z-index: 10000;
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces {
    flex-flow: row nowrap;
    align-items: center;
    justify-content: start;
    margin-left: 25px;
    height: 47px;
    padding: 0px;
  }
  .content-enlaces .enlaces::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 46px;
    background-color: #fff;
    top: -19px;
    left: -50px;
    transform: rotate(-35deg);
  }
}
@media screen and (min-width: 1000px) {
  .content-enlaces .enlaces {
    margin-left: 70px;
  }
}
.content-enlaces .enlaces .hr {
  width: 100%;
  height: 2px;
  background-color: rgba(128, 128, 128, 0.368627451);
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces .hr {
    display: none;
  }
}
.content-enlaces .enlaces a {
  width: 100%;
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 600;
  z-index: 10000;
  width: auto;
}
.content-enlaces .enlaces a:last-child {
  color: #2894ff;
  font-size: 17px;
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces a:last-child {
    display: none;
  }
}
.content-enlaces .enlaces a:hover {
  transition: all 0.1s ease;
  border-bottom: 3px solid #2894ff;
}
@media screen and (min-width: 787px) {
  .content-enlaces .enlaces a {
    width: auto;
    font-size: 12.5px;
    font-weight: 600;
    color: white;
  }
  .content-enlaces .enlaces a:hover {
    transition: all 0.1s ease;
    border-bottom: 3px solid white;
  }
}

.contenedor-luces {
  width: 100vw;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
}
.contenedor-luces .luces {
  width: 40px;
  height: auto;
  z-index: 990;
  position: relative;
}
@media screen and (min-width: 800px) {
  .contenedor-luces .luces {
    width: 35px;
  }
}

.lema-nav {
  height: 33px;
  width: 100vw;
  background-color: #2894ff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 787px) {
  .lema-nav {
    display: none;
  }
}
.lema-nav p {
  color: white;
  font-size: 14px;
  margin: 0px;
  white-space: nowrap; /* Evita que el párrafo se rompa */
  overflow: hidden; /* Oculta el texto que se sale del contenedor */
  position: relative; /* Necesario para animación */
  animation: mover 5s linear infinite; /* Animación infinita */
}
@keyframes mover {
  0% {
    transform: translateX(-100vw);
  }
  100% {
    transform: translateX(100vw); /* Termina en la posición final */
  }
}

.loadin {
  position: fixed;
  z-index: 999;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
.loadin .loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  box-shadow: inset -10px -10px 15px rgb(255, 255, 255), inset 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.loadin .loader::before {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  box-shadow: -10px -10px 15px rgb(255, 255, 255), 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.loadin .blue {
  height: 186px;
  width: 220px;
  position: absolute;
  animation: rotate 5s linear infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.loadin .img {
  width: 180px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.loadin .img img {
  width: 100%;
  height: 100%;
}
.loadin .blue::before {
  content: "";
  position: absolute;
  height: 30px;
  border-radius: 50%;
  width: 30px;
  background: linear-gradient(45deg, #2894ff, #5c89ff);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.loadin p {
  color: #1e1e1e;
  font-weight: 600;
  margin-top: 20px;
  font-size: 2rem;
  text-align: center;
}

.remove-loading {
  display: none;
}

.footer {
  height: auto;
  background-color: #1e1e1e;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.footer .contenedor-footer {
  max-width: 1540px;
}
.footer .contenedor-footer .icono-fdc {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: start;
  flex-flow: column;
  color: white;
}
.footer .contenedor-footer .icono-fdc p {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 0px;
}
.footer .contenedor-footer .icono-fdc span {
  display: block;
  font-size: 12px;
}
.footer .contenedor-footer .enlaces-contenedor {
  width: 100%;
  padding: 20px 0px;
  overflow: hidden;
  overflow-y: auto;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
@media screen and (min-width: 1230px) {
  .footer .contenedor-footer .enlaces-contenedor {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
.footer .contenedor-footer .enlaces-contenedor .enlaces {
  width: max-content;
  display: flex;
  flex-flow: column;
  align-items: self-start;
  justify-content: start;
  gap: 10px;
}
@media screen and (min-width: 600px) {
  .footer .contenedor-footer .enlaces-contenedor .enlaces {
    padding: 15px;
  }
}
@media screen and (min-width: 1230px) {
  .footer .contenedor-footer .enlaces-contenedor .enlaces {
    width: 20%;
  }
}
.footer .contenedor-footer .enlaces-contenedor .enlaces:first-child {
  width: 100%;
}
@media screen and (min-width: 1230px) {
  .footer .contenedor-footer .enlaces-contenedor .enlaces:first-child {
    width: 35%;
  }
}
.footer .contenedor-footer .enlaces-contenedor .enlaces strong {
  font-size: 15px;
  font-weight: 700;
  color: #2894ff;
  margin-top: 20px;
}
.footer .contenedor-footer .enlaces-contenedor .enlaces strong svg {
  width: 15px;
}
.footer .contenedor-footer .enlaces-contenedor .enlaces p {
  color: white;
  font-size: 13px;
  text-align: justify;
}
.footer .contenedor-footer .enlaces-contenedor .enlaces a {
  color: white;
  font-size: 13px;
  text-decoration: none;
  padding-left: 10px;
}
.footer .contenedor-footer .footer-footer {
  width: 100%;
  border-top: 2px solid gray;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0px;
}
.footer .contenedor-footer .footer-footer a {
  text-decoration: none;
  color: white;
  font-size: 13px;
}
.footer .contenedor-footer .footer-footer .redes {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer .contenedor-footer .footer-footer .redes a {
  width: 25px;
  height: 25px;
  padding: 5px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .contenedor-footer .footer-footer .redes a:hover {
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.footer .contenedor-footer .footer-footer .redes a svg {
  width: 100% !important;
  height: 100% !important;
  color: #1e1e1e;
}

.header-contacto {
  width: 100vw;
  position: relative;
  height: 320px;
  background-image: url(../assets/img/header-contactos.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .header-contacto {
    height: 400px;
  }
}
@media screen and (min-width: 1000px) {
  .header-contacto {
    height: 492px;
    background-position: top;
  }
}

.contenedor-contacto {
  position: relative;
  transform: translateY(0px);
  width: 100vw;
  height: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (min-width: 1000px) {
  .contenedor-contacto {
    transform: translateY(-200px);
  }
}
.contenedor-contacto .targeta-contacto {
  width: 100%;
  background-color: rgb(255, 255, 255);
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto {
    width: 980px;
    height: auto;
  }
}
.contenedor-contacto .targeta-contacto .contenido-targeta {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column nowrap;
  padding: 20px;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .hr {
  margin-top: 30px;
  background-color: #2894ff;
  width: 100%;
  height: 2px;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .mapa {
  width: 100%;
  height: auto;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .mapa iframe {
  width: 100%;
  height: 300px;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .datos-empresa {
  margin-top: 50px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: start;
  gap: 30px;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .datos-empresa p {
  width: 350px;
  color: #1e1e1e;
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .datos-empresa p {
    width: 676px;
  }
}
.contenedor-contacto .targeta-contacto .contenido-targeta .datos-empresa .horario div {
  width: 270px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
  align-items: center;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta {
  width: 100%;
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  align-items: start;
  flex-flow: column nowrap;
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta {
    flex-flow: row nowrap;
  }
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .descripcion h1 {
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 20px;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .descripcion p {
  color: #1e1e1e;
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .descripcion p {
    width: 450px;
  }
}
@media screen and (min-width: 600px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .descripcion p {
    width: 380px;
  }
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .datos {
  display: flex;
  flex-flow: column nowrap;
  justify-content: start;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .datos .telefono {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .datos .email {
    width: 60%;
  }
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header .datos {
    flex-flow: row nowrap;
    justify-content: center;
  }
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .texto-header {
    width: 50%;
  }
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .formulario {
  width: 90%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}
@media screen and (min-width: 800px) {
  .contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .formulario {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .formulario form {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: start;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .formulario form input {
  width: 300px;
  height: 40px;
  margin-bottom: 20px;
  border: 2px solid #2894ff;
}
.contenedor-contacto .targeta-contacto .contenido-targeta .header-targeta .formulario form input:last-child:hover {
  transition: all 0.2s ease;
  background-color: rgb(0, 85, 255);
}

.bk-card {
  background-color: rgba(0, 0, 0, 0.536);
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
}

.card-resultado {
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  text-align: left;
  border-radius: 0.5rem;
  max-width: 290px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.header {
  padding: 1.25rem 1rem 1rem 1rem;
  background-color: #ffffff;
}

.image,
.image-c {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: #fee2e2;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
}

.image-c {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  background-color: #e2feee;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  animation: animate 0.6s linear alternate-reverse infinite;
  transition: 0.6s ease;
}

.image svg {
  color: #dc2626;
  width: 1.5rem;
  height: 1.5rem;
}

.image-c svg {
  color: #0afa2a;
  width: 2rem;
  height: 2rem;
}

.content {
  margin-top: 0.75rem;
  text-align: center;
}

.title {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.message {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.actions {
  margin: 0.75rem 1rem;
  background-color: #f9fafb;
}

.desactivate {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.history {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background-color: #1aa06d;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.cancel {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/*# sourceMappingURL=contacto.css.map */
