*{
  padding: 0px;
  margin: 0px;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins-Black.woff2') format('woff2'),
      url('../font/Poppins-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins-Regular.woff2') format('woff2'),
      url('../font/Poppins-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins-Bold.woff2') format('woff2'),
      url('../font/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


:root{
  --primary-color: #258D37;
  --secondary-color: #E28123;
  --gray-color: #EAEAEA;
  --dark-gray-color: #333;
  --font-family: 'Poppins', sans-serif;
  --font-size: 16px;
  --line-height: 1.5;
}
body{
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--dark-gray-color);
  background-color: #fff;
}

h1 {
    font-size: 3em;
    font-weight: 900;
}
p {
    font-size: 16px;
    font-weight: normal;
}
.nav-item a{
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-size: 1rem;
  font-weight: bold;
  color: var(--gray-color);
}

.nav-item a:hover{
  color: var(--secondary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: var(--primary-color) !important;
}

.navbar-toggler{
  border: none;
  background-color: var(--secondary-color);
  color: var(--gray-color);
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
}

.navbar-toggler-icon{
  color: whitesmoke;
}

.agenda-cita{
  background-image: url('../img/fondo_agenda_cita.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}

.links{
  background-image: url('../img/fondo_empleados.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}

.text-link h1{
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.linea{
  display: block; /* Convierte el span en un elemento de bloque */
  height: 10px; /* Grosor de la línea */
  width: 50%; /* Ancho de la línea */
  background-color: var(--gray-color); /* Color de la línea */
  margin: 1.5rem auto 0 auto; /* Centra la línea y agrega margen superior */
}

.btn-agenda{
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
}

.form-control{
  color: var(--dark-gray-color);
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}

.btn-agenda:hover{
  background-color: var(--secondary-color);
  color: #fff;
}

.servicios{
  background-image: url('../img/fondo_servicios.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}

.acreditacion{
  background-image: url('../img/fondo_empleados.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}

.equipo{
  background-image: url('../img/fondo_empleados.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}

.contacto{
  background-image: url('../img/fondo_contacto.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}

.info-section{
  background-color:#fff;
  color: var(--primary-color);
}

footer{
  background-image: url('../img/ubicacion.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
}




footer h1{
  color: var(--primary-color);
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 10px;
}

footer h3{
  color: var(--secondary-color);
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

footer p{
  color: var(--dark-gray-color);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.mapa{
  width: 100%;
  height: 100%; 
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--gray-color);
  display: flex;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Distancia desde la parte inferior */
  right: 20px; /* Distancia desde la parte derecha */
  background-color: #25d366; /* Color verde de WhatsApp */
  color: white;
  font-size: 2rem; /* Tamaño del ícono */
  width: 60px; /* Ancho del botón */
  height: 60px; /* Alto del botón */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%; /* Hace el botón circular */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para darle profundidad */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1); /* Efecto de agrandamiento al pasar el cursor */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Sombra más intensa */
}



/* Pagination */
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-link {
    color: var(--dark-gray-color);
    margin-top: 5px;
    }


@media (max-width: 576px) {
     h1 {
    font-size: 1.5rem;
    font-weight: 900;
  }
  footer h1 {
    font-size: 2rem;
    font-weight: 900;
  }
  p {
    font-size: 1rem;
    font-weight:normal;
  }

}

@media (max-width: 768px) {

  footer h3{
    font-size: 1.5rem;
  }
  footer p{
    font-size: 1.2rem;
  }
}
