main>.container {
  padding: 30px 0;
}

.form-login {
  max-width: 350px;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
}


/* ---------//-----------------//---------*/
/* ---------//----index.php----//---------*/
/* ---------//-----------------//---------*/

/* ---------//----Botones flotantes de Redes Sociales----//---------*/
.social-buttons {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  /* Centra los botones verticalmente */
  z-index: 1000;
  /* Asegura que los botones estén sobre otros elementos */
}

.social-buttons a {
  display: block;
  margin-bottom: 10px;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-buttons a.facebook {
  background-color: #3b5998;
}

.social-buttons a.twitter {
  background-color: #1da1f2;
}

.social-buttons a.instagram {
  background: linear-gradient(45deg, #f58529, #e4405f, #9b4d96, #4c68d7, #00d2a3);
}

.social-buttons a.youtube {
  background-color: #ff0000;
}

.social-buttons a.linkedin {
  background-color: #0077b5;
}

.social-buttons a:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .social-buttons a {
    font-size: 20px;
    padding: 8px;
  }
}

@media (max-width: 380px) {
  .social-buttons a {
    font-size: 18px;
    padding: 6px;
  }
}

@media (max-width: 768px) {
  .social-buttons a {
    font-size: 20px;
    padding: 8px;
  }
}

@media (max-width: 380px) {
  .social-buttons a {
    font-size: 18px;
    padding: 6px;
  }
}

/* ---------//----Imagenes----//---------*/
.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
}

/* ---------//----Boton de WhatsApp----//---------*/

/* Estilo para el icono de WhatsApp */
.whatsapp-link i {
  font-size: 30px;
  /* Tamaño grande para el icono */
  line-height: 0;
  /* Evitar espacio adicional por la línea de base */
}

/* Posición fija del botón */
.sm-fixed {
  position: fixed;
  bottom: 10px;
  /* Distancia desde el borde inferior */
  right: 20px;
  /* Distancia desde el borde derecho */
}

/* Estilos para el botón */
.sm-button {
  padding: 15px 18px;
  background-color: rgb(48, 191, 57);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.sm-button-text {
  color: rgb(255, 255, 255);
  margin-left: 10px;
}

.sm-button:hover {
  transform: scale(1.1);
  background-color: rgb(30, 157, 45);
  /* Verde más oscuro en hover */
}

/* Consultas de medios para pantallas pequeñas */
@media (max-width: 1024px) {
  .sm-button {
    padding: 12px 25px;
    /* Reducir el tamaño del botón en pantallas medianas */
    font-size: 16px;
    /* Reducir el tamaño de la fuente */
  }

  .sm-button-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .sm-button {
    padding: 10px 20px;
    /* Más pequeño en pantallas aún más pequeñas */
    font-size: 14px;
  }

  .sm-button-text {
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  .sm-button {
    padding: 8px 18px;
    /* Botón más pequeño en pantallas muy pequeñas */
    font-size: 15px;
    /* Reducir aún más el tamaño de la fuente */
  }

  .sm-button-text {
    font-size: 10px;
    /* Texto aún más pequeño */
  }
}