/* General */


.resumen-datos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.dato {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dato:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.dato h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dato p {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0e944f;
}

/* Destacado */
.destacado {
    background: #e6fff5;
    border: 2px solid #0e944f;
}

/* Gráficos */
.graficos {
    padding: 2rem;
}

.graficos h2 {
    margin-bottom: 1rem;
}

.graficos-contenedor {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

canvas {
    max-width: 400px;
    max-height: 400px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

canvas:hover {
    transform: scale(1.05);
}
/* Sección de balances */
.balances {
    background: #f4f4f4;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.balances h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0e944f;
}

#pdf-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.pdf-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.pdf-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.pdf-item a {
    text-decoration: none;
    color: #0e944f;
    font-weight: bold;
}
.reglamento {
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reglamento h2 {
    margin-bottom: 1rem;
    color: #333;
}

#reglamento-container a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #0e944f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#reglamento-container a:hover {
    background: #0c7a41;
}
@media (max-width: 988px){
.graficos{
    font-size: 18px;
}
.graficos-contenedor{
    font-size: 18px;
}

.dato h3 {
    font-size: 1.8rem;
}

.dato p {
    font-size: 2.8rem;
}
}

