/*recuerda resetar los estilos del navegador*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  display: flex;
  height: 500px;
  background-image: url(../assets/hero-mov.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
}

.container2 {
  width: 100%;
  max-width: 300px;
  height: auto;
  background-color: rgba(145, 131, 131, 0.616);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 15px;
  padding: 1rem 1rem;
}

.container2 img {
  width: 100%;
  max-width: 500px;
  padding: 1rem 2rem;
}

.container2 p {
  text-align: center;
  font-size: 1.5rem;
  color: white;
}

.datos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: #046bc3;
}

.telefono {
  display: none;
}

.telefono h5 {
  display: none;
}

.horarios {
  display: none;
}
.agendar {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 25px;
  color: white;
}

.agendar button {
  font-size: 25px; /* Aumenta el tamaño del texto dentro del botón */
  padding: 15px 20px; /* Agrega más espacio dentro del botón (vertical y horizontal) */
  border-radius: 25px; /* Redondea las esquinas del botón */
  background-color: #046bc3;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
}

.agendar button:hover {
  background-color: white; /* Cambia el color del botón cuando el cursor pasa sobre él */
  color: #046bc3;
}

/*estilos de la version web*/

@media (min-width: 768px) {
  /*recuerda resetar los estilos del navegador*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .container {
    display: flex;
    height: 600px;
    background-image: url(../assets/mujerlatina.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center 0%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
  }

  .container2 {
    width: 100%;
    max-width: 750px;
    height: 250px;
    background-color: rgba(145, 131, 131, 0.616);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .container2 img {
    width: 100%;
    max-width: 500px;
    padding: 1rem 2rem;
  }

  .container2 p {
    text-align: center;
    font-size: 2rem;
  }
  .datos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem 10rem;
    background-color: #046bc3;
    overflow: hidden;
  }

  .telefono {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 25px;
    line-height: 1.5;
    margin-top: 0px;
    color: white;
  }

  .horarios {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 25px;
    color: white;
  }
  .agendar {
    display: flex;
    flex-direction: row;
    font-size: 50px; /* Esto aumenta el tamaño del texto dentro del contenedor */
  }

  .agendar button {
    font-size: 25px; /* Aumenta el tamaño del texto dentro del botón */
    padding: 20px 40px; /* Agrega más espacio dentro del botón (vertical y horizontal) */
    border-radius: 25px; /* Redondea las esquinas del botón */
    background-color: #046bc3;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
  }

  .agendar button:hover {
    background-color: white; /* Cambia el color del botón cuando el cursor pasa sobre él */
    color: #046bc3;
  }
}
