@charset "UTF-8";
/* Definimos las Custom properties */
:root {
  /* Colores */
  --negro: #393939;
  /* Tipografía */
  --tipo-principal: Helvetica, Arial, sans-serif;
  --tipo-secundaria: Verdana;
}

/* (Opcional) Desactivamos los animations en el caso de que el usuario haya configurado el modo sin animation */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
/* Reseteamos los margin y paddings de todas las etiquetas */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before, *::after {
  display: block;
}

/* Evitamos problemas con las imagenes */
img, picture, video, iframe, figure {
  width: 100%;
  max-width: 100%;
  display: block;
  /* (Opcional) */
  -o-object-fit: cover;
     object-fit: cover;
  /* (Opcional) */
  -o-object-position: center center;
     object-position: center center;
}

/* Reseteamos los enlaces para funcionar como cajas... */
a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/* ... excepto los que se encuentran en párrafos */
p a {
  display: inline;
}

/* Quitamos los puntos de los <li> */
li {
  list-style-type: none;
}

/* (Opcional) Configuramos anclas suaves */
html {
  scroll-behavior: smooth;
}

/* Desactivamos estilos por defecto de las principales etiquetas de texto */
h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

/* Evitamos problemas con los pseudoelementos de quotes */
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/* (Opcional) Configuramos el texto que seleccionamos */
/* Nivelamos problemas de tipografías y colocación de formularios */
form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  -webkit-hyphens: auto;
          hyphens: auto;
  background-color: transparent;
  color: inherit;
  display: block;
  /* (Opcional) */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Reseteamos las tablas */
table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Evitamos problemas con los SVG */
svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

/* Configuramos la tipografía para toda la web */
body {
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--tipo-principal);
  color: var(--negro);
  /* (Opcional) */
  -webkit-hyphens: auto;
          hyphens: auto;
  /* (Opcional) */
  font-smooth: always;
  /* (Opcional) */
  -webkit-font-smoothing: antialiased;
  /* (Opcional) */
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: rgb(223, 223, 223);
  display: flex;
  flex-direction: column;
}
body main {
  flex-grow: 1;
}

b {
  font-weight: bold;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bolder;
  /* Tamaño mínimo: 1.5rem, escala hasta 4vw, pero no excede 2.5rem */
}

h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: bold;
  /* Tamaño mínimo: 1.25rem, escala hasta 3vw, pero no excede 2rem */
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: bold;
  /* Tamaño mínimo: 1.25rem, escala hasta 3vw, pero no excede 2rem */
}

a {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  /* Tamaño mínimo: 0.875rem (14px), escala hasta 2.5vw, pero no excede 1.5rem */
}

p {
  font-size: clamp(1.25rem, 1.5vw, 1rem);
  /* Tamaño mínimo: 1rem, escala con 2vw, pero no excede 1.5rem */
  word-break: break-word; /* Evita cortes abruptos */
  word-wrap: break-word; /* Compatibilidad para navegadores antiguos */
  -webkit-hyphens: none;
          hyphens: none;
}

.servicesTitle {
  text-align: center;
  margin-top: 4rem;
}

@font-face {
  font-family: "kardia";
  src: url("../assets/GameCube.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.text-center {
  display: flex;
  justify-content: center;
  padding: 0 3rem;
}

.desktopHeader {
  position: sticky;
  top: 0;
  height: 3rem;
  background-color: rgb(46, 46, 46);
  box-shadow: 0 0 1rem 0.1rem #000;
  color: #ffffff;
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1000;
}
.desktopHeader__logo {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0px 0px 0.3rem #fff);
}
.desktopHeader__nav {
  display: flex;
  -moz-column-gap: 2vw;
       column-gap: 2vw;
}
.desktopHeader__nav a {
  text-align: center;
}

.hidden {
  visibility: hidden;
}

.small-logo {
  width: 2rem;
}

.hero {
  min-height: 50vh;
  padding: 0 1rem;
  background-image: url(../img/ultrasound-wallpaper.webp);
  background-position: center;
  /*background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;*/
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  row-gap: 2rem;
  font-weight: bolder;
  color: #000;
  box-shadow: 0 0 1rem 0.1rem #000;
}
.hero h1 {
  font-family: "kardia";
  color: #000d7e;
}
@media screen and (max-width: 500px) {
  .hero h1 {
    font-size: large;
  }
}
.hero img {
  width: 50%;
  background-color: transparent;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .hero {
    min-height: 30vh;
  }
}

.presentation__container {
  background-color: #ffffff;
  width: 80%;
  margin: 4rem auto;
  display: flex;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 1rem 0.1rem #000;
}
@media screen and (max-width: 800px) {
  .presentation__container {
    flex-flow: column;
  }
}
.presentation__container__img {
  width: 50%;
  border-radius: 0.5rem 0 0 0.5rem;
}
@media screen and (max-width: 800px) {
  .presentation__container__img {
    width: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.presentation__container__info {
  display: flex;
  flex-flow: column;
  padding: 2rem;
  row-gap: 2rem;
  justify-content: center;
}
.presentation__container__info__title {
  text-align: end;
  font-weight: bolder;
}
@media screen and (max-width: 800px) {
  .presentation__container__info__title {
    text-align: center;
  }
}
.presentation__container__info__text {
  text-align: justify;
}
.presentation__container__info__buttons {
  padding: 1rem 0.25rem;
  display: flex;
  border-radius: 0.5rem;
  color: #000000;
  width: 100%;
}
.presentation__container__info__buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  font-size: 1rem;
  flex-grow: 1;
  font-weight: bold;
  color: #fff;
  background-color: #020069;
  border: thin solid #ffffff;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media (hover: hover) {
  .presentation__container__info__buttons a:hover {
    background-color: #1bc700;
    font-weight: bold;
  }
}

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .reverse {
    flex-flow: column;
  }
}
.reverse .presentation__container__info {
  text-align: justify;
}
.reverse .presentation__container__info__title {
  text-align: start;
}
@media screen and (max-width: 800px) {
  .reverse .presentation__container__info__title {
    text-align: center;
  }
}
.reverse .presentation__container__img {
  width: 50%;
  border-radius: 0 0.5rem 0.5rem 0;
}
@media screen and (max-width: 800px) {
  .reverse .presentation__container__img {
    width: 100%;
    border-radius: 0.5rem 0.5rem 0 0;
  }
}

.footer {
  height: 15rem;
  background-color: rgb(46, 46, 46);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
  color: #fff;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.3);
}
.footer__contact {
  padding-top: 1rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  row-gap: 2rem;
  justify-content: space-evenly;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 800px) {
  .footer__contact {
    flex-direction: column;
  }
}
.footer__contact a {
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 1rem 0.1rem #000;
  min-height: 3rem;
  max-height: 2.5rem;
  width: 300px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  background-color: #25D366;
  color: #fff;
  font-weight: bold;
  transition: ease-in 0.1s;
}
@media (hover: hover) {
  .footer__contact a:hover {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 500px) {
  .footer__contact a {
    width: 200px;
  }
}
.footer__contact a img {
  width: 5rem;
}
.footer__contact .footer__socials__face {
  background-color: #4267B2;
}
.footer__contact .footer__socials__email {
  background-color: #b3c700;
}
.footer__powered {
  background-color: rgb(0, 0, 0);
}

.responsive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 800px) {
  .responsive-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.brand {
  width: 70%;
  margin: 4rem auto;
}

.card {
  border-radius: 0.5rem;
  background-color: #fff;
  transition: ease-in 0.15s;
  box-shadow: 0px 0px 1rem 0.1rem #000;
  cursor: pointer;
}
@media (hover: hover) {
  .card:hover {
    transform: scale(1.1);
  }
}
.card img {
  border-radius: 0.5rem 0.5rem 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}
.card p {
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
}

.card-items {
  height: -moz-min-content;
  height: min-content;
  border-radius: 0.5rem;
  background-color: #020069;
  color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  text-align: center;
  box-shadow: 0px 0px 1rem 0.1rem #000;
}
.card-items img {
  border-radius: 0.5rem 0.5rem 0 0;
  margin-bottom: 1rem;
  background-color: #fff;
}
.card-items .brand__buttons {
  display: flex;
  flex-direction: column;
}
.card-items .brand__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  margin: 0 auto;
  width: 80%;
  border-radius: 0.5rem;
  border: thin solid #fff;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1rem;
}
@media (hover: hover) {
  .card-items .brand__buttons a:hover {
    background-color: #1bc700;
    border: none;
  }
}

.menuMobile {
  background-color: rgba(0, 0, 0, 0.767);
  position: fixed;
  top: 3rem;
  height: 60vh;
  overflow-y: scroll;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transform: translate(0, -100%);
  transition: ease-in 0.2s;
  z-index: 990;
}
.menuMobile__close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  top: 4vh;
  width: 120px;
  height: 2rem;
  right: 4vw;
  color: #fff;
  border: thin solid #fff;
  cursor: pointer;
}
.menuMobile__container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.menuMobile__container a {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in 0.3s;
}
@media (hover: hover) {
  .menuMobile__container a:hover {
    background-color: #020069;
    filter: drop-shadow(0px 0px 0.3rem #fff);
    font-weight: 900;
  }
}

.menu-on {
  visibility: visible;
  transform: translate(0, 0);
}

.questions {
  width: 80%;
  margin: 4rem auto;
}
.questions h1, .questions h2, .questions h3 {
  text-align: center;
}
.questions p {
  text-align: justify;
}

.carouselFlex {
  display: flex;
  flex-flow: row;
  width: 80vw;
  margin: 2rem auto;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  height: -moz-min-content;
  height: min-content;
  justify-content: center;
  overflow-y: hidden;
  margin-bottom: 4rem;
}
@media screen and (max-width: 500px) {
  .carouselFlex {
    flex-flow: column-reverse;
  }
}
.carouselFlex .carousel {
  overflow-y: scroll;
  margin-top: 1rem;
  width: 150px;
  height: 500px;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem 0.1rem #000;
  margin-top: 2rem;
  margin-right: 1rem;
}
.carouselFlex .carousel::-webkit-scrollbar {
  width: 1rem;
}
.carouselFlex .carousel::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0.5rem;
  border: thin solid #000;
}
.carouselFlex .carousel::-webkit-scrollbar-thumb {
  background: #020069;
  border-radius: 0.5rem;
}
@media screen and (max-width: 800px) {
  .carouselFlex .carousel {
    height: 350px;
  }
}
@media screen and (max-width: 500px) {
  .carouselFlex .carousel {
    width: 90%;
    margin: 1rem auto;
    overflow-y: hidden;
    height: 150px;
  }
}
.carouselFlex .carousel .carousel__container {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 500px) {
  .carouselFlex .carousel .carousel__container {
    flex-flow: row;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.carouselFlex .carousel .carousel__container .carousel__container__img {
  cursor: pointer;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem 0.1rem #000;
}
@media screen and (max-width: 500px) {
  .carouselFlex .carousel .carousel__container .carousel__container__img {
    height: 120px;
    width: 100px;
  }
}
.carouselFlex .display {
  width: 700px;
  padding: 1rem;
  height: auto;
  border-radius: 0.5rem;
  padding-bottom: 2rem;
  border-radius: 0.5rem;
}
.carouselFlex .display img {
  margin-top: 1rem;
  box-shadow: 0 0 0.5rem 0.1rem #000;
}
@media screen and (max-width: 800px) {
  .carouselFlex .display {
    margin: 0 auto;
    width: 100%;
  }
}
.carouselFlex .display__img {
  border-radius: 0.5rem;
}

.contact__form {
  width: 600px;
  margin: 4rem auto;
  box-shadow: 0px 0px 1rem 0.1rem #000;
  border-radius: 0.5rem;
  background-color: #020069;
  color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 2rem;
  overflow-y: scroll;
}
@media screen and (max-width: 800px) {
  .contact__form {
    width: 90%;
  }
}
.contact__form label {
  font-weight: bold;
  cursor: pointer;
}
.contact__form input {
  margin-top: 0.5rem;
  font-weight: bold;
  width: 100%;
  height: 2rem;
  border-radius: 0.5rem;
  border: medium solid #ffffff;
  background-color: #fff;
  padding: 0.25rem;
  color: #000;
}
.contact__form input:focus {
  outline: none;
}
.contact__form textarea {
  margin-top: 0.5rem;
  font-weight: bold;
  width: 100%;
  height: 10rem;
  border-radius: 0.5rem;
  border: medium solid #ffffff;
  background-color: #fff;
  color: #000;
  padding: 0.25rem;
}
.contact__form textarea:focus {
  outline: none;
}
.contact__form button {
  width: 100%;
  height: 2rem;
  background-color: #fff;
  font-weight: bold;
  color: #000;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media (hover: hover) {
  .contact__form button:hover {
    color: #fff;
    background-color: #009b00;
  }
}

.contact__socials {
  margin: 0 auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
.contact__socials a {
  border-radius: 0.5rem;
  box-shadow: 0px 0px 1rem 0.1rem #000;
  height: 4rem;
  width: 600px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  background-color: #25D366;
  color: #fff;
  font-weight: bold;
  transition: ease-in 0.1s;
}
@media (hover: hover) {
  .contact__socials a:hover {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 800px) {
  .contact__socials a {
    width: 90%;
  }
}
.contact__socials a img {
  width: 10rem;
}
@media screen and (max-width: 800px) {
  .contact__socials a img {
    width: 6rem;
  }
}
.contact__socials .contact__socials__face {
  background-color: #4267B2;
}

.modalForm {
  transform: translate(0, 0);
  position: fixed;
  left: 0;
  right: 0;
  visibility: hidden;
  transform: scale(0);
  transition: ease-in 0.1s;
  overflow-y: scroll;
  z-index: 1000;
}
@media (hover: hover) {
  .modalForm .contact__cancel:hover {
    background-color: rgb(192, 0, 0);
  }
}

.modalForm-on {
  transform: scale(1);
  visibility: visible;
}

.carouselPromos {
  position: relative;
  width: 100%;
  /* Limitar tamaño máximo */
  margin: 0 auto; /* Centrar el carrusel */
  overflow: hidden;
  box-shadow: 0 0 1rem 0.1rem #000;
}

.carouselPromos__track-container {
  display: flex;
  overflow: hidden;
  position: relative;
}

.carouselPromos__track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carouselPromos__slide {
  width: 100%;
  flex: 0 0 auto;
}

.carouselPromos__image {
  width: 100%;
}

/* Botones del carrusel */
.carouselPromos__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carouselPromos__button--left {
  left: 10px;
}

.carouselPromos__button--right {
  right: 10px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .carouselPromos__button {
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .carouselPromos__button {
    padding: 5px;
    font-size: 14px;
  }
}
.brandHover {
  width: 100%;
  padding: 2rem 0;
  background-color: rgba(0, 0, 0, 0.767);
  box-shadow: 0px 0px 1rem 0.1rem #000;
  position: fixed;
  top: 3rem;
  z-index: 990;
  visibility: hidden;
  transform: translate(0, -150%);
  transition: ease-in 0.4s;
}
.brandHover__conatiner {
  display: flex;
  height: inherit;
  flex-flow: row wrap;
  padding: 0 2vw;
  -moz-column-gap: 2vw;
       column-gap: 2vw;
  align-items: center;
  justify-content: center;
}
.brandHover__conatiner__card {
  width: 190px;
  height: 200px;
  color: #fff;
  cursor: pointer;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.5rem;
  text-align: center;
}
.brandHover__conatiner__card__title {
  font-size: 0.9rem;
}
.brandHover__conatiner__card__img {
  width: 185px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (hover: hover) {
  .brandHover__conatiner__card__img:hover {
    box-shadow: 0px 0px 1rem 0.1rem #ffffff;
  }
}

.brandHover-on {
  visibility: visible;
  transform: translate(0, 0);
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  animation-delay: 0.9s;
}
@keyframes sk-foldCubeAngle {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.spinner-off {
  visibility: hidden;
  width: 0;
  height: 0;
}/*# sourceMappingURL=main.css.map */