/* Animación */
@keyframes delay {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cuerpo */
body {
    animation: delay 1.5s forwards;
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: rgb(38, 38, 38);

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Texto general */
h1, h2, p, li, a {
    color: white;
}

/* Título principal */
.titulo {
    color: #4f7cff;
    text-align: center;
    font-size: 28px;
}

/* Contenido */
.contenido {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Footer superior */
.fot {
    background-color: #4f4f4f;
    padding: 30px 20px;
}

/* Footer inferior */
.fot2 {
    position: relative;
    background-color: #333; /* gris oscuro*/
    color: white;
    padding: 15px 20px; /* Espaciado interno */
    text-align: center;
    min-height: 80px;
    overflow: hidden;
  }

/* Links */
a {
    color: #4f7cff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
/*hr*/

hr {
    border: 0;
    height: 2px;
    background-color: #ffffff;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
    width: 100%;
    margin: 20px auto;
}
/* Estadísticas */
.estadisticas {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    color: white;
    margin-bottom: 5px;
}

.stat-numero {
    color: #4f7cff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.foto {
    display: block;
    margin: 0px auto;
    border-radius: 70%;
    width: 270px;
    height: 250px;
    object-fit: cover;
}
