/* Reset default styles */
.language-switch {
  position: absolute;
  top: 0px;
  right: 40px;
  z-index: 10;
}

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  background-color: #ccc;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  transition: background-color 0.4s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  color: white;
}

.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.4s;
  z-index: 1;
}

input:checked + .slider {
 /* background-color: #007bff;*/
}

input:checked + .slider::before {
  transform: translateX(20px);
}

.label {
  z-index: 2;
  pointer-events: none;
}

.label-en {
  margin-left: -40px;
}

.label-es {
  margin-right: -40px;
}

.countdown {
  position: absolute;
  bottom: 80px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
}

.social {
  position: absolute;
  bottom: 0%;
  width:50%;
  text-align:right;
  right:20px;
}
.socialin {
  position: absolute;
  bottom: 0%;
  width:50%;
  text-align:left;
  left:20px;
}


.facebook-icon {
  width: 200px;
  height: 200px;
  transition: transform 0.3s ease;
}
.facebook-icon:hover {
  transform: scale(1.1);
}





/* Aqui va todo lo original como debe de ser */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background-color: white;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image:url(Images/fondo.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Overlay para legibilidad */
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.clinic-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  color: white;
  margin-top: 30px;
}

.center-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:80%;
}
.center-text2 {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:80%;
}

.slogan {
	font-family: 'Playfair Display', Georgia serif;
  font-weight:lighter;
  font-size: 62px;
  color: white;
  margin: 10px 0;
}
.coming-soon, .coming-soon2 {
  font-family: 'Playfair Display', Georgia serif;
  font-weight:lighter;
  font-size: 45px;
  color: white;
  margin: 10px 0;
}
.coming-soon, .coming-soon2 {
	font-weight:bold;
}



/* Responsive styles */
@media (max-width: 768px) {
  .clinic-name {
    font-size: 30px;
  }

  .slogan,
  .coming-soon, .coming-soon2 {
    font-size: 40px;
  }
  .countdown {
    font-size: 20px;
  }
  .facebook-icon {
  width: 160px;
  height: 160px;
}
  


}
@media (max-width: 480px) {
	.clinic-name {
    font-size: 22px;
  }

  .slogan {
    font-size: 33px;
  }
  .coming-soon, .coming-soon2 {
	  font-size:40px;
  }
	
	.countdown {
    font-size: 18px;
  }
	.facebook-icon {
  width: 120px;
  height: 120px;

}

}
@media (max-width: 440px) {
	.clinic-name {
    font-size: 22px;
  }

  .slogan {
    font-size: 25px;
  }
  .coming-soon, .coming-soon2 {
	  font-size:30px;
  }
  
  .countdown {
    font-size: 16px;
  }
	.facebook-icon {
  width: 100px;
  height: 100px;
  transition: transform 0.3s ease;
}

}

