* {
  margin: 0;
  min-width: auto;
  max-width: 100%;
  scroll-behavior: smooth;
}

#loader.bye {
  clip-path: circle(0.0% at 50% 49%);
  display: none;
}

#loader{
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 10000;
  clip-path: circle(70.7% at 50% 50%);
  transition: clip-path 0.3s ease-in-out;
}

.rl-loading-container{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.rl-loading-thumb {
  width: 10px;
  height: 40px;
  background-color: #41f3fd;
  margin: 4px;
  box-shadow: 0 0 12px 3px #0882ff;
  animation: rl-loading 1.5s ease-in-out infinite;
}

.rl-loading-thumb-1 {
  animation-delay: 0s;
}

.rl-loading-thumb-2 {
  animation-delay: 0.5s;
}

.rl-loading-thumb-3 {
  animation-delay: 1s;
}


/* Define un patrón de diseño móvil */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

/* Ajusta el tamaño de fuente y espaciado */
body {
  font-size: 1rem;
}

body.menu-activo {
  overflow-y: hidden;
}

html{
  font-size: 0.813rem;
  font-family: 'Exo 2' , sans-serif;
}

a {
  text-decoration: none;
  color: #eee;
}
header {
  background-position: center;
  background-image: url(src/img/bg-info.jpeg);
  background-attachment: fixed;
  width: 100%;
  height: 45em;
  display: block;
}

#animated {
  max-width: 50%;
  max-height: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  transform: translateY(-50%);
  margin: 0 auto;
  animation: jump-and-rotate 10s infinite;
  transform-style: preserve-3d;
  z-index: 0;
}





.nav_toggle {
  position: relative;
  left: 80%; 
  background-image: var(--icono-open);
  background-size: cover;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  cursor: pointer;
  z-index: 3;

  transition: background-image .5s;
}

.nav_input {
  opacity: 0;
}

.nav-oculto_container {
  min-height: 10%;
  width: 100%;
  overflow-x: hidden;
  align-items: center;
  display: flex;
  --icono-open: url(./src/img/menu-open.svg);
  --menu-show: translateX(-100%);
  --oscuro: url(./src/img/menu-regular-24.png)
  transition: .5s;
  display: none;
  position: fixed;
  z-index: 10;
}

.nav-oculto_container.oculto {
  --icono-open: url(./src/img/menu-open.svg);
  transform: translateX(-100%);
}

.nav-oculto_container:has(.nav_input:checked) {
  --icono-open: url(./src/img/x-regular-24.png);
  --menu-show: translate(0)
}

.nav_list {
  transform: var(--menu-show);
  font-size: 5rem;
  background-color: #9e9e9e9d;
  position: fixed;
  inset: 0;
  padding: 1.5rem 5%;
  display: grid;
  place-content: center;
  gap: 2rem;
  list-style: none;
  z-index: 2;
  text-shadow: 0.063rem 0.063rem 0.125rem black;
  transition: .5s transform;
}

.nav_input.oscuro {
  background-image: var(--oscuro);
}


nav {
  box-sizing: border-box;
  padding: 0 2rem;
  position: fixed;
  height: 10rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  max-width: 100%;
  z-index: 1000;/* ajusta el valor según sea necesario */
  transition: background-color 0.5s, height 0.5s ease-in-out;
}


.brand {
  animation: slideIn .5s forwards;
}



nav a img {
  max-width: 30%;
  object-fit: contain; /* o cover */
  cursor: pointer;
}

.brand span{
  color: #0077ff;
}

nav ul {
  display: flex;
  text-shadow: 0.063rem 0.063rem 0.125rem black;
}

nav ul li{
  list-style: none;
  animation: slideIn .5s forwards;
}

nav ul li:nth-child(1){
  animation-delay: 0s;
}
nav ul li:nth-child(2){
  animation-delay: .5s;
}
nav ul li:nth-child(3){
  animation-delay: 1s;
}
nav ul li:nth-child(4){
  animation-delay: 1.5s;
}

nav ul li a {
  padding: 0.5rem;
  margin: 0 1.3rem;
  position: relative;
  letter-spacing: 1px;
}

nav ul li a:last-child{
  margin-right: 0;
}

nav ul li a::before,
nav ul li a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #0077ff;
  left: 0;
  transform: scaleX(0);
  transition: all .5s;

}

nav ul li a::before{
  top: 0;
  transform-origin: left;
}
nav ul li a::after{
  bottom: 0;
  transform-origin: right;
}


nav ul li a:hover::before,
nav ul li a:hover::after{
  transform: scaleX(1);
}

.cambiarfondo {
  background-color: #9e9e9e9d;
  transition: background-color 0.5s;
  transition: scale 0.5s;
  width: 100%;
  height: 7rem;
  transition: height 0.5s ease-in-out;
  animation: navAppear 0.5s forwards;
}




::-webkit-scrollbar {
  display: none;
}

/* INFO */
.sobre {
	background: linear-gradient(-45deg, #5262ee, #00b7ff, #0088b9, #2326d5);
	background-size: 300% 300%;
	animation: gradient 15s ease infinite;
  scroll-snap-align: center;
}

.info {
  display: inline-block;
  margin-inline: 20%;
  text-align: center;
  color: #ffffff;
  font-size: 30px;
  padding: 2%;
}


.info p {
  text-shadow: 2px 2px#7a7a7a;
}

/* Especialidades */
.especialidades {
  color: white;
  position: relative; /* Para que el fondo se posicione detrás del contenido */
  text-shadow: 0.063rem 0.063rem 0.125rem black;
}


.especialidades {
  max-width: 100%;
  padding-top: 3rem;
}

.timeline {
  view-timeline-name: --reveal;

  animation-name:  show;
  animation-fill-mode: both;

  animation-timeline: --reveal;
  animation-range: entry 0% cover 50%;
}



.textos-especialidades {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.especialidad1 {
  grid-column: 1;
  grid-row: 1;
}

.especialidad2 {
  grid-column: 2;
  grid-row: 2;
  text-align: end;
}

.especialidad3 {
  grid-column: 1;
  grid-row: 3;
}

.especialidad4 {
  grid-column: 2;
  grid-row: 4;
  text-align: end;
}

.especialidad1, .especialidad2, .especialidad3, .especialidad4 {
  border-bottom: 3px solid #ffffff;
  padding-bottom: 20px;
  margin-bottom: 20px;

}

.textos-especialidades {
  padding: 3rem;
}

.titulo {
  font-size: 3rem;
}

.descripcion {
  font-weight: normal;
  font-size: 2rem;
}

.fondo {
  position: absolute; /* Para que el fondo se posicione detrás del contenido */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(5px); /* Difumina el fondo con un radio de 10px */
  z-index: -1; /* Para que el fondo se posicione detrás del contenido */
} 
/* Galeria */ 


/* Footer */ 

.footer{
	font-size:0.6em;
	color:#333;
	text-align:center;
	width:100%;
	height:1.875rem;
	position:absolute;
  margin-top: 5%;
}

.footer-basic {
  padding:2.5rem 0;
  background-color:rgb(70, 70, 70);
  color:white;
}

.footer-basic ul {
  padding:0;
  list-style:none;
  text-align:center;
  font-size:18px;
  line-height:1.6;
}

.footer-basic li {
  padding:0 10px;
}

.list-inline {
  margin-top: 1%;
  justify-content: center;
  display: flex;
}

.footer-basic ul a {
  color:inherit;
  opacity:0.8;
  transform: scale(1);
  transition: 0.3s;
}

.footer-basic ul a:hover {
  color: #0077ff;
  transition: 0.5s;
  text-shadow: 0 0 10px #0077ff;
}

.footer-basic .social {
  text-align:center;
  padding-bottom:25px;
}

.footer-basic .social > a {
  font-size:24px;
  width:40px;
  height:auto;
  line-height:40px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  border:1px solid #cccccc;
  margin:0 8px;
  color:inherit;
  opacity:0.75;
  transform: scale(1);
  transition: .5s;
  z-index: -1;
}

.footer-basic .social > a:hover {
  color: #0077ff;.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 3rem;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    transform: translate(50%, -50%);
    right: 0;
    top: 0;
  }
}
  .modal-content {
    position: relative;
  
  box-shadow: 0 0 20px #0077ff;
  text-shadow: 0 0 50px #0077ff;
  border:1px solid #0077ff;
}
.footer-basic .social > a:hover::before {
  transform: scale(2px);
  box-shadow: 0 0 50px;
}

.footer-basic .copyright {
  margin-top:15px;
  text-align:center;
  font-size:13px;
  color:#aaa;
}


.gallery {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 80vw; /* Ancho máximo como porcentaje del ancho de la ventana */
  margin: 4vh auto; /* Margen como porcentaje del alto de la ventana */
  padding: 4vh; /* Padding como porcentaje del alto de la ventana */
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  box-shadow: 0 0 2vh rgba(0, 0, 0, 0.1);
}

.gallery-item :hover {
  transform: scale(1.005);
  transition: 0.2s;
}

.gallery-item {
  flex-basis: 20vw; /* Ancho de cada item de la galería como porcentaje del ancho de la ventana */
  margin: 2vh; /* Margen como porcentaje del alto de la ventana */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item img {
  height: 20vw; /* Alto de la imagen como porcentaje del alto de la ventana */
  object-fit: cover;
  border-radius: 1vh; /* Radio de esquina como porcentaje del alto de la ventana */
  min-width: 100%;
  max-height: 100%;
}

.gallery-text {
  padding: 2vh; /* Padding como porcentaje del alto de la ventana */
  text-align: center;
}




.gallery-text h3 {
  font-size: 3vh; /* Tamaño de fuente como porcentaje del alto de la ventana */
  margin-bottom: 1vh; /* Margen inferior como porcentaje del alto de la ventana */
}

.gallery-text p {
  font-size: 2vh; /* Tamaño de fuente como porcentaje del alto de la ventana */
}

.gallery h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  display: block;
  width: 100%; /* Agrega esto para que el título ocupe todo el ancho */
  float: none; /* Agrega esto para que el título no flote */
  clear: both; /* Agrega esto para que el título se muestre arriba */
}

.gallery a {
  color: #000000;
}


/* Modal */
.modal {
  display: none; /* Oculta el modal por defecto */
  position: fixed; /* Posición fija para que no se mueva */
  top: 0; /* Arriba */
  right: 0; /* Derecha */
  bottom: 0; /* Abajo */
  left: 0; /* Izquierda */
  background-color: rgba(0, 0, 0, 0.5); /* Fondo transparente */
  z-index: 1001; /* Por encima de otros elementos */
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #333;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 1100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.close-modal:hover {
  background-color: #f0f0f0;
  color: #000;
  transform: scale(1.1);
}

.modal-content {
  position: relative;
  overflow: hidden;
  /* ... otros estilos que ya tengas ... */
}

/* Contenido del modal */
.modal-content {
  position: relative;
  margin: 40px auto;
  max-width: 80%; /* Aumenta el ancho para dar más espacio */
  max-height: 90vh; /* Ajusta la altura máxima */
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto; /* Permite scroll vertical si el contenido es muy largo */
}

.modal-content img.main-image {
  max-width: 100%;
  max-height: 60vh; /* Ajusta la altura máxima de la imagen principal */
  object-fit: contain;
  display: block;
  margin: 0 auto 20px; /* Añade margen inferior */
}

.modal-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block; /* Agrega esto para que la imagen se centre */
  margin: 0 auto; /* Agrega esto para que la imagen se centre horizontalmente */
  flex: 0 0 auto; /* Agrega esto para que la imagen se centre verticalmente */
}
.carousel-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 10px;
}

.carousel-container::-webkit-scrollbar {
  height: 8px;
}

.carousel-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.carousel-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.carousel-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.carousel-item {
  display: inline-block;
  margin-right: 10px;
  width: 100px; /* Ajusta según necesites */
  height: 100px; /* Ajusta según necesites */
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-item img:hover {
  transform: scale(1.05);
}
/* Texto del modal */
.modal-content h3 {
  font-size: 18px; /* Tamaño de fuente */
  font-weight: bold; /* Negrita */
  margin-bottom: 10px; /* Margen inferior */
}

.modal-content p {
  font-size: 14px; /* Tamaño de fuente */
  margin-bottom: 20px; /* Margen inferior */
}

/* Botón de cierre del modal */


/* Estilos para cuando el modal está abierto */
.modal.show {
  display: block; /* Muestra el modal */
}

/* Flechas */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 2.5rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

/* Transición suave de la imagen principal */
.modal-content .main-image {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.modal-content .main-image.fade-out {
  opacity: 0;
}


/* Miniatura activa */
.carousel-item img.active {
  border: 3px solid #0077ff;
  box-shadow: 0 0 10px #0077ff;
  border-radius: 5px;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
