body {
  font-family: 'mifuente3', sans-serif;
  background: linear-gradient(45deg, #7c014d, #000000,  #510053);
  /* color: #fff; */
  margin: 0;
  padding: 20px; /* Añadido padding para móviles */
  box-sizing: border-box;
  min-height: 100vh;
  background-size: 400% 400%;
  animation: fondoAnimado 10s ease infinite;
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
}

.fondo-animado {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@keyframes fondoAnimado {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tarjeta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%; /* Más estrecho en móviles */
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(45deg, #ad2697, #750f0f, #1c19d2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  margin: 10px 0; /* Margen vertical */
  background-size: 400% 400%;
  animation: fondoAnimado 8s ease infinite;
}

.foto {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}
.foto img{
  min-width: 60%;
  height: auto;
}

.descripcion {
  text-align: justify;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.botones {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.botones a {
  background-color: rgba(68, 68, 68, 0.7);
  color: #fff;
  text-decoration: none;
  padding: 12px;
  margin: 8px 0;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.botones a:hover {
  background: linear-gradient(45deg, #6a1b9a, #d32f2f, #1976d2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

h1, h2{
  text-align: center;color: #e237c6;
}
p{
 color: #000000; 
}

/* Media Queries para diferentes tamaños de pantalla */
@media (min-width: 768px) {
  /* .body{
    padding: 10px;
  } */
  .tarjeta {
    width: 60% !important; /* Fuerza el ancho deseado */
    max-width: none !important; /* Elimina cualquier max-width que limite */
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    background-color: rgba(26, 26, 26, 0.7); /* Más transparente para ver fondo */
    padding: 20px;
  }
  
  /* .foto {
    width: 150px;
    height: 150px;
  } */
  
  .descripcion {
    font-size: 18px;
  }
  
  .botones {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .botones a {
    margin: 10px;
    min-width: 150px;
  }
}

@media (min-width: 1024px) {
  .tarjeta {
    width: 50%;
  }
  
  .descripcion {
    font-size: 20px;
    padding: 0 20px;
  text-align: justify;
  }
}

@font-face {
  font-family: 'mifuente3';    
  src: url('fonts/MontserratAlternates-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}