@charset "UTF-8";
* {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "League Spartan";
}

body {
  height: 100vh;
}

@font-face {
  font-family: "pixel";
  src: url("../assets/font/Early GameBoy.ttf");
}
html {
  /* Personalizar la barra de desplazamiento */
  /* Fondo de la barra de desplazamiento */
  /* La barra de desplazamiento misma */
  /* Cambio de color cuando el mouse pasa sobre la barra */
}
html ::-webkit-scrollbar {
  width: 12px; /* Ancho de la barra vertical */
  height: 12px; /* Altura de la barra horizontal (si existe) */
  display: block;
}
html ::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color de fondo del track */
  border-radius: 5px; /* Bordes redondeados */
}
html ::-webkit-scrollbar-thumb {
  background-color: #909090; /* Color de la barra */
  border-radius: 10px; /* Bordes redondeados para suavidad */
  border: 2px solid transparent; /* Espacio entre el scrollbar y el track */
  background-clip: padding-box; /* Asegura que el borde sea visible */
}
html ::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Cambia el color cuando está en hover */
}

body header nav {
  width: 100%;
  height: 60px;
  background-color: #f7f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1882352941);
  border-bottom: solid 1px #ffffff;
}
body header nav .logoContainer {
  width: 200px;
  height: 100%;
  margin-left: 20px;
}
body header nav .logoContainer img {
  width: 100%;
}
body header nav .navigation {
  display: none;
}
body header nav ul {
  display: flex;
  margin-right: 50px;
}
body header nav ul li a {
  position: relative;
  margin: 5px;
  color: #79797A;
  cursor: pointer;
  text-decoration: none;
}
body header nav ul li a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #79797A;
  transition: width 0.3s ease, left 0.3s ease;
}
body header nav ul li a:hover::after {
  width: 100%;
  left: 0;
}
body header nav ul li a:not(:hover)::after {
  width: 0;
  left: auto;
  right: 0;
}

@media (max-width: 737px) {
  body header nav {
    width: 100%;
    height: 60px;
    background-color: #f7f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1882352941);
    border-bottom: solid 1px #ffffff;
    position: relative;
  }
  body header nav .logoContainer {
    width: 150px;
    height: 100%;
    margin-left: 10px;
    display: flex;
    align-items: center;
  }
  body header nav .logoContainer img {
    width: 100%;
    transform: translateY(2px);
  }
  body header nav .navigation {
    position: relative;
    margin-right: 30px;
    z-index: 3;
    display: block;
  }
  body header nav .navigation .toggleMenuH {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: transparent;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
    right: 0;
    top: -12px;
  }
  body header nav .navigation .menuH {
    position: relative;
    width: 25px;
    height: 3px;
    background-color: #79797A;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: 1s;
  }
  body header nav .navigation .menuH::before, body header nav .navigation .menuH::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #79797A;
    border-radius: 10px;
    transition: 0.8s;
  }
  body header nav .navigation .menuH::before {
    top: -8px;
  }
  body header nav .navigation .menuH::after {
    top: 8px;
  }
  body header nav .navigation .toggleMenuH:checked ~ .menuH {
    background-color: transparent;
  }
  body header nav .navigation .toggleMenuH:checked ~ .menuH::before {
    transform: rotate(45deg);
    top: 0;
    background-color: #464648;
    height: 2px;
  }
  body header nav .navigation .toggleMenuH:checked ~ .menuH::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: #464648;
    height: 2px;
  }
  body header nav ul {
    background-color: #d5d5d5;
    padding-top: 50px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    right: 1px;
    top: -280px;
    margin-right: 0px;
    height: 280px;
    width: 189px;
    transition: 1s ease;
    border-radius: 5px;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.3137254902);
    z-index: 2;
  }
  body header nav ul li a {
    margin: 5px;
    color: #464648;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    text-shadow: -0.5px 1px #ffffff;
    font-size: 20px;
  }
  body header nav .move {
    top: 0px;
  }
}
body main {
  position: relative;
  overflow: hidden;
}
body main #servicios {
  text-align: center;
  padding: 20px;
  height: auto;
  position: relative;
}
body main #servicios #container {
  position: absolute;
  top: 0px;
  right: -1000px;
}
body main #servicios h2 {
  font-size: 30px;
  font-weight: 600;
  color: #464648;
}
body main #servicios .container {
  margin-top: 10px;
}
body main #servicios .container .textContainer {
  display: flex;
  justify-content: center;
  margin: 15px;
}
body main #servicios .container .textContainer h3 {
  font-size: 70px;
  margin-top: 10px;
  color: #d5d5d5;
  text-transform: uppercase;
  z-index: -1;
  letter-spacing: 4px;
  width: 50%;
  display: flex;
}
body main #servicios .container .textContainer .estetica {
  justify-content: flex-end;
}
body main #servicios .container .textContainer .medicina {
  justify-content: flex-start;
}
body main #servicios .container .textContainer p {
  color: #79797A;
  padding: 0px;
  text-align: left;
  display: flex;
  align-items: center;
  width: 50%;
  margin: 10px;
}
body main #servicios .container .textContainer .pMedicina {
  text-align: right;
}
body main #servicios .container .serviciosEsteticos {
  display: flex;
  justify-content: center;
}
body main #servicios .container .serviciosEsteticos .servicioContainer {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main #servicios .container .serviciosEsteticos .servicioContainer .imgContainer {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1254901961);
}
body main #servicios .container .serviciosEsteticos .servicioContainer .imgContainer .imgServicio {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: 1s;
  cursor: pointer;
}
body main #servicios .container .serviciosEsteticos .servicioContainer .imgContainer .imgServicio:hover {
  transform: scale(1.2);
}
body main #servicios .container .serviciosEsteticos .servicioContainer h2 {
  font-size: 17px;
  font-weight: 500;
  color: #79797A;
  margin: 10px;
}
body main #servicios .container .serviciosMedicos {
  display: flex;
  justify-content: center;
}
body main #servicios .container .serviciosMedicos .servicioContainer {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main #servicios .container .serviciosMedicos .servicioContainer .imgContainer {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1254901961);
}
body main #servicios .container .serviciosMedicos .servicioContainer .imgContainer .imgServicio {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: 1s;
  cursor: pointer;
}
body main #servicios .container .serviciosMedicos .servicioContainer .imgContainer .imgServicio:hover {
  transform: scale(1.2);
}
body main #servicios .container .serviciosMedicos .servicioContainer h2 {
  font-size: 17px;
  font-weight: 500;
  color: #79797A;
  margin: 10px;
}

@media (max-width: 737px) {
  body main #servicios {
    text-align: center;
    padding: 20px;
  }
  body main #servicios h2 {
    font-size: 30px;
    font-weight: 600;
    color: #464648;
  }
  body main #servicios .container {
    margin-top: 10px;
  }
  body main #servicios .container .textContainer {
    display: flex;
    justify-content: flex-end;
    margin: 0px;
    position: relative;
  }
  body main #servicios .container .textContainer h3 {
    position: absolute;
    font-size: 50px;
    margin-top: 0px;
    color: #efecec;
    text-shadow: -1px 1px rgba(0, 0, 0, 0.1254901961);
    text-transform: uppercase;
    z-index: -1;
    letter-spacing: 4px;
    width: 50%;
    display: flex;
    top: 0;
    left: 20px;
  }
  body main #servicios .container .textContainer .estetica {
    justify-content: flex-start;
  }
  body main #servicios .container .textContainer .medicina {
    justify-content: flex-start;
  }
  body main #servicios .container .textContainer p {
    color: #79797A;
    padding: 0px;
    text-align: right;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 10px;
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    margin-right: 30px;
    font-size: 17px;
    line-height: 0.8;
  }
  body main #servicios .container .textContainer .pMedicina {
    text-align: right;
  }
  body main #servicios .container .serviciosEsteticos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body main #servicios .container .serviciosEsteticos .servicioContainer {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  body main #servicios .container .serviciosEsteticos .servicioContainer .imgContainer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1254901961);
  }
  body main #servicios .container .serviciosEsteticos .servicioContainer .imgContainer .imgServicio {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: 1s;
    cursor: pointer;
  }
  body main #servicios .container .serviciosEsteticos .servicioContainer .imgContainer .imgServicio:hover {
    transform: scale(1.2);
  }
  body main #servicios .container .serviciosEsteticos .servicioContainer h2 {
    max-width: 300px; /* Ajusta el ancho para forzar dos líneas */
    white-space: normal; /* Permite que el texto haga salto de línea */
    word-wrap: break-word; /* Rompe palabras si es necesario */
  }
  body main #servicios .container .serviciosMedicos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  body main #servicios .container .serviciosMedicos .servicioContainer {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body main #servicios .container .serviciosMedicos .servicioContainer .imgContainer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.1254901961);
  }
  body main #servicios .container .serviciosMedicos .servicioContainer .imgContainer .imgServicio {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: 1s;
    cursor: pointer;
  }
  body main #servicios .container .serviciosMedicos .servicioContainer .imgContainer .imgServicio:hover {
    transform: scale(1.2);
  }
  body main #servicios .container .serviciosMedicos .servicioContainer h2 {
    font-size: 17px;
    font-weight: 500;
    color: #79797A;
    margin: 10px 0px;
  }
}
body main #pacientes {
  width: 100%;
  padding: 20px 0px;
  transition: max-height 1.5s ease;
}
body main #pacientes h2 {
  font-size: 24px;
  font-weight: 600;
  color: #464648;
  text-align: center;
  padding-bottom: 10px;
}
body main #pacientes .textoPacientesContainer {
  display: flex;
  flex-direction: column;
  margin: 0px 70px;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 2px 70px 10px 70px;
}
body main #pacientes .textoPacientesContainer h3 {
  font-size: 50px;
  font-weight: 600;
  color: #464648;
  text-align: center;
  letter-spacing: 2px;
  color: #d5d5d5;
  text-transform: uppercase;
  text-shadow: -1px 1px rgba(0, 0, 0, 0.1254901961);
}
body main #pacientes .textoPacientesContainer .textoPacientes {
  color: #79797A;
  z-index: 2;
}
body main #pacientes .textoPacientesContainer .textoPacientes a {
  color: #79797A;
}
body main #pacientes .pacientesReviewsContainer {
  border-radius: 5px;
  width: 350px;
  height: 35px;
  margin: auto;
  background-color: #fff;
  border: solid 0.1px #d5d5d5;
  box-shadow: 0px 0px 6px 0.5px rgba(0, 0, 0, 0.1254901961);
}
body main #pacientes .pacientesReviewsContainer a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transform: translateY(2px);
}
body main #pacientes .pacientesReviewsContainer a img {
  width: 70px;
}
body main #pacientes .pacientesReviewsContainer a .pacientesReviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  gap: 10px;
}
body main #pacientes .pacientesReviewsContainer a .pacientesReviews .companyName {
  color: #464648;
  font-weight: 600;
}
body main #pacientes .pacientesReviewsContainer a .pacientesReviews .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: black;
  font-weight: 500;
}
body main #pacientes .pacientesReviewsContainer a .pacientesReviews .stars {
  color: #f4c150;
  font-size: 18px;
  display: flex;
  gap: 2px;
  transform: translateY(-3px);
}
body main #pacientes .pacientesReviewsContainer a .pacientesReviews .userRatingsTotal {
  font-size: 10px;
  color: #79797A;
  font-weight: 400;
}
body main #pacientes .pacientesCarrouselContainer {
  position: relative;
  margin-top: 5px;
  display: flex;
  justify-content: center;
}
body main #pacientes .pacientesCarrouselContainer .fa-solid {
  position: absolute;
  cursor: pointer;
}
body main #pacientes .pacientesCarrouselContainer .fa-chevron-left {
  top: 45%;
  left: 7px;
}
body main #pacientes .pacientesCarrouselContainer .fa-chevron-right {
  right: 7px;
  top: 45%;
}
body main #pacientes .pacientesCarrouselContainer .displayNone {
  display: none;
}
body main #pacientes .pacientesCarrouselContainer .fa-solid:hover {
  color: #f4c150;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer {
  margin: 0px 20px;
  position: relative;
  display: flex;
  width: 95%;
  overflow: hidden;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer {
  display: flex;
  flex-wrap: nowrap;
  font-family: Arial, sans-serif;
  width: auto;
  overflow: auto;
  gap: 5px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer {
  border: solid 0.5px #d5d5d5;
  border-radius: 10px;
  max-height: 120px;
  border-bottom: 5px solid #d5d5d5;
  box-shadow: 0px 0px 6px 0.5px rgba(0, 0, 0, 0.1254901961);
  background-color: #fff;
  overflow: hidden;
  transition: max-height 1.5s ease, box-shadow 1s ease;
  width: 300px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer:hover {
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1882352941);
  max-height: 350px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a {
  color: #464648;
  text-decoration: none;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails {
  display: flex;
  align-items: center;
  padding: 5px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 4px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #d5d5d5;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .nombre {
  font-weight: bold;
  font-size: 12px;
  color: #464648;
  display: flex;
  justify-content: flex-start;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .fechaEstrellaContainer {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 5px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .fechaEstrellaContainer .fecha {
  color: #464648;
  font-size: 10px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .fechaEstrellaContainer .stars {
  color: #f4c150;
  font-size: 16px;
  display: flex;
  gap: 2px;
  transform: translateY(-3px);
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer .reviewText {
  font-size: 10px;
  line-height: 1.3;
  padding: 10px;
  color: #464648;
  background-color: #f3f3f3;
  border-radius: 0px 0px 5px 5px;
}
body main #pacientes .pacientesCarrouselContainer .pacientesContainer ::-webkit-scrollbar {
  display: none;
}

@media (max-width: 737px) {
  body main #pacientes {
    width: 100%;
    height: auto;
    text-align: center;
  }
  body main #pacientes h2 {
    font-size: 24px;
    font-weight: 600;
    color: #464648;
    text-align: center;
    padding-bottom: 0px;
  }
  body main #pacientes .textoPacientesContainer {
    display: flex;
    flex-direction: column;
    margin: 0px;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 10px 20px;
  }
  body main #pacientes .textoPacientesContainer h3 {
    font-size: 26px;
    font-weight: 600;
    color: #464648;
    text-align: center;
    letter-spacing: 2px;
    color: #d5d5d5;
    text-transform: uppercase;
    text-shadow: -1px 1px rgba(0, 0, 0, 0.1254901961);
    white-space: nowrap;
    padding-bottom: 5px;
  }
  body main #pacientes .textoPacientesContainer .textoPacientes {
    color: #79797A;
    z-index: 2;
    text-align: justify;
  }
  body main #pacientes .textoPacientesContainer .textoPacientes a {
    color: #79797A;
  }
  body main #pacientes .pacientesReviewsContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    width: 250px;
    height: auto;
    margin: auto;
    background-color: #fff;
    border: solid 0.1px #d5d5d5;
    box-shadow: 0px 0px 6px 0.5px rgba(0, 0, 0, 0.1254901961);
  }
  body main #pacientes .pacientesReviewsContainer a {
    text-decoration: none;
  }
  body main #pacientes .pacientesReviewsContainer a img {
    width: 70px;
  }
  body main #pacientes .pacientesReviewsContainer a .pacientesReviews {
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 0px;
  }
  body main #pacientes .pacientesReviewsContainer a .pacientesReviews .companyName {
    color: #464648;
  }
  body main #pacientes .pacientesReviewsContainer a .pacientesReviews .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: black;
    font-weight: 500;
  }
  body main #pacientes .pacientesReviewsContainer a .pacientesReviews .stars {
    color: #f4c150;
    font-size: 18px;
    display: flex;
    gap: 2px;
    transform: translateY(-3px);
  }
  body main #pacientes .pacientesReviewsContainer a .pacientesReviews .userRatingsTotal {
    font-size: 10px;
    color: #79797A;
    font-weight: 400;
  }
  body main #pacientes .pacientesCarrouselContainer {
    position: none;
    margin-top: 5px;
    display: flex;
    justify-content: center;
  }
  body main #pacientes .pacientesCarrouselContainer .fa-solid {
    display: none;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer {
    margin: 5px 25px;
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer {
    display: flex;
    flex-wrap: nowrap;
    font-family: Arial, sans-serif;
    width: auto;
    overflow: auto;
    gap: 5px;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer {
    border: solid 0.5px #d5d5d5;
    border-radius: 10px;
    height: auto;
    max-height: none;
    border-bottom: 5px solid #d5d5d5;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1254901961);
    background-color: #fff;
    overflow: auto;
    transition: max-height 1.5s ease, box-shadow 1s ease;
    width: 300px;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer:hover {
    box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1882352941);
    max-height: none;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a {
    color: #464648;
    text-decoration: none;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails {
    display: flex;
    align-items: center;
    padding: 5px;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 4px;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d5d5d5;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .nombre {
    font-weight: bold;
    font-size: 12px;
    color: #464648;
    display: flex;
    justify-content: flex-start;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .fechaEstrellaContainer {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 5px;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .fechaEstrellaContainer .fecha {
    color: #464648;
    font-size: 10px;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer a .reviewDetails .nombreFechaContainer .fechaEstrellaContainer .stars {
    color: #f4c150;
    font-size: 16px;
    display: flex;
    gap: 2px;
    transform: translateY(-3px);
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer #reviewsContainer .reviewDetailsContainer .reviewText {
    font-size: 9.5px;
    line-height: 1.2;
    padding: 10px;
    color: #464648;
    background-color: #f3f3f3;
    border-radius: 0px 0px 5px 5px;
    height: 100%;
  }
  body main #pacientes .pacientesCarrouselContainer .pacientesContainer ::-webkit-scrollbar {
    display: none;
  }
}
body #consultorio {
  background-color: #f7f9f9;
  padding: 20px;
}
body #consultorio h2 {
  font-size: 30px;
  font-weight: 600;
  color: #464648;
  text-align: center;
  padding-bottom: 10px;
}
body #consultorio .consultorioContainer {
  display: flex;
}
body #consultorio .consultorioContainer .consultorioContainerUno {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
body #consultorio .consultorioContainer .consultorioContainerUno h3 {
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 50px;
  color: #d5d5d5;
  text-transform: uppercase;
  letter-spacing: 3px;
}
body #consultorio .consultorioContainer .consultorioContainerUno p {
  color: #79797A;
  padding: 40px 20px 10px 20px;
  text-align: right;
  z-index: 1;
}
body #consultorio .consultorioContainer .consultorioContainerUno #map {
  width: 90%;
  height: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  border: #f7f9f9 1px solid;
}
body #consultorio .consultorioContainer .consultorioContainerUno #map .gm-style-iw-chr {
  display: none;
}
body #consultorio .consultorioContainer .consultorioContainerUno #map .gm-style-iw {
  padding: 0px;
}
body #consultorio .consultorioContainer .consultorioContainerUno #map .gm-style-iw .gm-style-iw-d {
  width: 200px;
  padding: 7px;
  margin: 0px;
  padding-bottom: 0px;
  margin-right: -40px;
}
body #consultorio .consultorioContainer .consultorioContainerDos {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 80vh;
  padding: 10px;
  position: relative;
}
body #consultorio .consultorioContainer .consultorioContainerDos .fa-chevron-right,
body #consultorio .consultorioContainer .consultorioContainerDos .fa-chevron-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #f7f9f9;
  opacity: 0.7;
  font-size: 24px;
  z-index: 10;
  font-size: 15px;
}
body #consultorio .consultorioContainer .consultorioContainerDos .fa-chevron-right {
  right: 15px;
}
body #consultorio .consultorioContainer .consultorioContainerDos .fa-chevron-left {
  left: 15px;
}
body #consultorio .consultorioContainer .consultorioContainerDos .consultorioCarrouselContainer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.2509803922);
}
body #consultorio .consultorioContainer .consultorioContainerDos .consultorioCarrouselContainer .consultorioCarrousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
body #consultorio .consultorioContainer .consultorioContainerDos .consultorioCarrouselContainer .consultorioCarrousel img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}
body #consultorio .consultorioContainer .consultorioContainerDos .dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
body #consultorio .consultorioContainer .consultorioContainerDos .dots .dot {
  width: 8px;
  height: 8px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}
body #consultorio .consultorioContainer .consultorioContainerDos .dots .dot.active {
  background-color: #333;
}
body #consultorio .consultorioContainer .consultorioContainerDos ::-webkit-scrollbar {
  display: none;
}

@media (max-width: 737px) {
  body #consultorio {
    background-color: #f7f9f9;
    padding: 20px;
  }
  body #consultorio h2 {
    font-size: 24px;
    font-weight: 600;
    color: #464648;
    text-align: center;
    padding-bottom: 10px;
  }
  body #consultorio .consultorioContainer {
    display: block;
  }
  body #consultorio .consultorioContainer .consultorioContainerUno {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  body #consultorio .consultorioContainer .consultorioContainerUno h3 {
    position: absolute;
    top: -8px;
    left: 20px;
    font-size: 40px;
    letter-spacing: 2px;
    color: #d5d5d5;
    text-transform: uppercase;
    text-shadow: -1px 1px rgba(0, 0, 0, 0.1254901961);
  }
  body #consultorio .consultorioContainer .consultorioContainerUno p {
    color: #79797A;
    padding: 15px 15px 10px 15px;
    text-align: right;
    z-index: 1;
    opacity: 0;
  }
  body #consultorio .consultorioContainer .consultorioContainerUno #map {
    width: 95%;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    outline: none;
    border: #f7f9f9 1px solid;
  }
  body #consultorio .consultorioContainer .consultorioContainerDos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
  }
  body #consultorio .consultorioContainer .consultorioContainerDos .fa-chevron-right,
  body #consultorio .consultorioContainer .consultorioContainerDos .fa-chevron-left {
    font-size: 18px;
  }
  body #consultorio .consultorioContainer .consultorioContainerDos .consultorioCarrouselContainer {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body #consultorio .consultorioContainer .consultorioContainerDos .consultorioCarrouselContainer .consultorioCarrousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  body #consultorio .consultorioContainer .consultorioContainerDos .consultorioCarrouselContainer .consultorioCarrousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  body #consultorio .consultorioContainer .consultorioContainerDos .dots {
    bottom: 17px;
  }
}
body main #preguntasFrecuentes {
  width: 100%;
  height: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f7f9f9;
}
body main #preguntasFrecuentes h2 {
  font-size: 30px;
  font-weight: 600;
  color: #464648;
}
body main #preguntasFrecuentes .preguntasContainer {
  height: auto;
  width: 70%;
  margin-top: 20px;
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer {
  width: 100%;
  height: 30px;
  cursor: pointer;
  transition: 1s;
  overflow: hidden;
  border: solid 0.5px #f7f9f9;
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta {
  height: 30px;
  background-color: #d5d5d5;
  display: flex;
  align-items: center;
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta p {
  color: #464648;
  font-size: 20px;
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta .flechaPregunta {
  width: 9px;
  transition: 1s;
  margin: 5px;
  filter: invert(15%) sepia(3%) saturate(88%) hue-rotate(180deg) brightness(95%) contrast(92%);
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta .flechaPregunta.rotada {
  transform: rotate(90deg);
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .respuesta {
  background-color: #efecec;
  height: 70px;
  padding: 5px;
  display: flex;
  align-items: center;
  padding: 0px 40px;
  justify-content: center;
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .respuesta p {
  color: #464648;
}
body main #preguntasFrecuentes .preguntasContainer .preguntaContainer.expandida {
  height: 100px;
}
body main #preguntasFrecuentes .textoPreguntasContainer {
  display: flex;
  margin: 20px;
  align-items: center;
}
body main #preguntasFrecuentes .textoPreguntasContainer .textoPreguntas {
  color: #79797A;
}
body main #preguntasFrecuentes .textoPreguntasContainer a .fa-whatsapp {
  color: #464648;
  margin: 5px;
  transform: translateY(-3px);
  transition: 0.5s;
  font-size: 25px;
}
body main #preguntasFrecuentes .textoPreguntasContainer a .fa-whatsapp:hover {
  color: green;
}

@media (max-width: 737px) {
  body main #preguntasFrecuentes {
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body main #preguntasFrecuentes h2 {
    font-size: 30px;
    font-weight: 600;
    color: #464648;
  }
  body main #preguntasFrecuentes .preguntasContainer {
    height: auto;
    width: 90%;
    margin-top: 20px;
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer {
    width: 100%;
    height: 30px;
    cursor: pointer;
    transition: 1s;
    overflow: hidden;
    border: solid 0.5px #f7f9f9;
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta {
    height: 30px;
    background-color: #d5d5d5;
    display: flex;
    align-items: center;
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta p {
    color: #464648;
    font-size: 17px;
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta .productosPiel {
    font-size: 15px;
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta .flechaPregunta {
    width: 9px;
    transition: 1s;
    margin: 5px;
    filter: invert(15%) sepia(3%) saturate(88%) hue-rotate(180deg) brightness(95%) contrast(92%);
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .pregunta .flechaPregunta.rotada {
    transform: rotate(90deg);
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .respuesta {
    background-color: #efecec;
    height: 70px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer .respuesta p {
    color: #464648;
  }
  body main #preguntasFrecuentes .preguntasContainer .preguntaContainer.expandida {
    height: 100px;
  }
  body main #preguntasFrecuentes .textoPreguntasContainer {
    display: flex;
    margin: 20px 10px;
    align-items: center;
  }
  body main #preguntasFrecuentes .textoPreguntasContainer .textoPreguntas {
    color: #79797A;
    text-align: right;
    margin-right: 10px;
  }
  body main #preguntasFrecuentes .textoPreguntasContainer a .fa-whatsapp {
    color: green;
    margin: 5px;
    transform: translateY(-3px);
    transition: 0.5s;
    font-size: 35px;
  }
  body main #preguntasFrecuentes .textoPreguntasContainer a .fa-whatsapp:hover {
    color: green;
  }
}
body main {
  transition: filter 0.8s;
}
body main.blureado {
  filter: blur(5px);
}

body footer {
  width: 100%;
  height: auto;
  background-color: #f7f9f9;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1882352941);
  border-top: solid 1px #ffffff;
  z-index: 1;
  transform: translateY(1px);
}
body footer .section01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
body footer .section01 .logoContainer {
  margin-left: 40px;
}
body footer .section01 .logoContainer .logoFooter {
  width: 140px;
  transform: translateY(3px);
}
body footer .section01 .logosAprobados {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-right: 40px;
}
body footer .section01 .logosAprobados .anmat {
  width: 100px;
}
body footer .section01 .logosAprobados .senasa {
  width: 130px;
}
body footer .divisor {
  width: 91%;
  height: 1px;
  background-color: #d5d5d5;
  margin: auto;
}
body footer .section02 {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
}
body footer .section02 .newsletter {
  width: 25%;
  height: 50px;
  margin-left: 40px;
  color: #464648;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body footer .section02 .newsletter .inputContainer {
  margin-top: 3px;
}
body footer .section02 .newsletter .inputContainer input {
  border: solid 1px #d5d5d5;
  height: 20px;
  padding-left: 5px;
  outline: none;
  color: #79797A;
}
body footer .section02 .newsletter .inputContainer button {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: solid 1px #d5d5d5;
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.5s;
}
body footer .section02 .newsletter .inputContainer button:hover {
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1882352941);
  background-color: #f7f9f9;
  border: solid 1px #79797A;
}
body footer .section02 .newsletter .inputContainer button:hover .fa-upload {
  color: #464648;
}
body footer .section02 .newsletter .inputContainer button:active {
  box-shadow: none;
  background-color: rgb(251, 169, 229);
}
body footer .section02 .newsletter .inputContainer button .fa-upload {
  font-size: 10px;
  color: #79797A;
  transition: all 1s;
}
body .sign {
  background-color: #efecec;
  display: flex;
  justify-content: center;
  font-family: "pixel", sans-serif;
  color: #79797A;
  font-size: 10px;
}

@media (max-width: 737px) {
  body footer {
    width: 100%;
    height: auto;
    background-color: #f7f9f9;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1882352941);
    border-top: solid 1px #ffffff;
  }
  body footer .section01 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: right;
    height: auto;
    margin-bottom: 20px;
  }
  body footer .section01 .logoContainer {
    margin-left: 0px;
  }
  body footer .section01 .logoContainer .logoFooter {
    width: 170px;
    transform: translateY(3px);
  }
  body footer .section01 .logosAprobados {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    margin-right: 0px;
  }
  body footer .section01 .logosAprobados .anmat {
    width: 100px;
  }
  body footer .section01 .logosAprobados .senasa {
    width: 130px;
  }
  body footer .divisor {
    width: 91%;
    height: 1px;
    background-color: #d5d5d5;
    margin: auto;
  }
  body footer .section02 {
    height: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body footer .section02 .newsletter {
    width: auto;
    height: 50px;
    margin-left: 0px;
    color: #464648;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body footer .section02 .newsletter .inputContainer {
    margin-top: 3px;
  }
  body footer .section02 .newsletter .inputContainer input {
    border: solid 1px #d5d5d5;
    height: 20px;
    padding-left: 5px;
    outline: none;
    color: #79797A;
  }
  body footer .section02 .newsletter .inputContainer button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: solid 1px #d5d5d5;
    margin-left: 5px;
    cursor: pointer;
    transition: all 0.5s;
  }
  body footer .section02 .newsletter .inputContainer button:hover {
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1882352941);
    background-color: #f7f9f9;
    border: solid 1px #79797A;
  }
  body footer .section02 .newsletter .inputContainer button:hover .fa-upload {
    color: #464648;
  }
  body footer .section02 .newsletter .inputContainer button:active {
    box-shadow: none;
    background-color: rgb(251, 169, 229);
  }
  body footer .section02 .newsletter .inputContainer button .fa-upload {
    font-size: 10px;
    color: #79797A;
    transition: all 1s;
  }
}
body {
  position: relative;
}
body .intro {
  width: 100%;
  height: 100%;
  background-color: #f7f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  transition: all 1.5s ease;
}
body .intro .logoIntro {
  width: 200px;
  transition: 1s;
  transform: scale(0.8);
  opacity: 0;
  position: absolute;
}
body .intro .logoIntroAnimation {
  transform: scale(1);
  opacity: 1;
}

@media (max-width: 737px) {
  body {
    position: relative;
  }
  body .intro {
    height: 110vh;
    z-index: 5;
  }
  body .intro .logoIntro {
    width: 200px;
    transition: 1s;
    transform: scale(0.8);
    opacity: 0;
    position: absolute;
  }
  body .intro .logoIntroAnimation {
    transform: scale(1);
    opacity: 1;
  }
}
body .dres {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .dres h2 {
  margin-top: 20px;
  color: #464648;
}
body .dres #dres {
  display: flex;
  margin: 10px;
}
body .dres #dres .drContainer {
  margin: 10px;
  position: relative;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1254901961);
  border-radius: 5px;
  border: solid 0.5px rgb(204, 204, 204);
  transition: all 0.5s;
}
body .dres #dres .drContainer:hover {
  box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.1882352941);
  transform: scale(1.01);
}
body .dres #dres .drContainer img {
  width: 100%;
  border-radius: 5px;
  height: 100%;
}
body .dres #dres .drContainer .infoContainer {
  background-color: #f7f9f9;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  padding: 5px;
  height: auto;
  border-radius: 3px;
}
body .dres #dres .drContainer .infoContainer .name {
  color: #464648;
  font-size: 18px;
}
body .dres #dres .drContainer .infoContainer .specs {
  font-size: 12px;
  color: #464648;
}

@media (max-width: 737px) {
  body .dres {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body .dres h2 {
    margin-top: 20px;
    color: #464648;
  }
  body .dres #dres {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 5px;
  }
  body .dres #dres .drContainer {
    margin: 5px;
    position: relative;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.1254901961);
    border-radius: 5px;
    width: 45%;
    border: solid 0.5px gray;
  }
  body .dres #dres .drContainer img {
    width: 100%;
    border-radius: 5px;
    height: 100%;
  }
  body .dres #dres .drContainer .infoContainer {
    background-color: #ffffff;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    padding: 5px;
    height: auto;
  }
  body .dres #dres .drContainer .infoContainer .name {
    color: #464648;
    font-size: 18px;
  }
  body .dres #dres .drContainer .infoContainer .specs {
    font-size: 12px;
    color: #464648;
  }
}

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