.agenda-resumen {
    background: white;
    border-radius: 28px;
    padding: 18px;
    margin-bottom: 18px;
    text-align: center;
    box-shadow: var(--sombra);
}

.agenda-resumen h2 {
    margin: 0;
    font-size: 30px;
}

.agenda-resumen p {
    margin: 8px 0 0;
    font-weight: bold;
    color: #3274df;
}

.lista-agenda {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.actividad {
    background: white;
    border-radius: 28px;
    padding: 16px;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    align-items: center;
    box-shadow: var(--sombra);
    border: 4px solid white;
}

.actividad.completada {
    background: #dfffe8;
}

.actividad-icono {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: #dff3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.actividad-info h3 {
    margin: 0;
    font-size: 24px;
}

.actividad-info p {
    margin: 5px 0;
    font-size: 16px;
    font-weight: bold;
    color: #475569;
}

.actividad-botones {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.actividad-botones button {
    border: none;
    border-radius: 18px;
    padding: 14px;
    font-size: 18px;
    font-weight: bold;
    background: #eef5ff;
}

.btn-listo {
    background: #dfffe8 !important;
}

@media (max-width: 430px) {
    .actividad {
        grid-template-columns: 64px 1fr;
    }

    .actividad-icono {
        width: 64px;
        height: 64px;
        font-size: 36px;
    }

    .actividad-info h3 {
        font-size: 21px;
    }
}


.agenda-vacia {
    background: white;
    border-radius: 28px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--sombra);
}

.agenda-vacia-icono {
    font-size: 70px;
    margin-bottom: 10px;
}

.agenda-vacia h3 {
    margin: 0;
    font-size: 26px;
}

.agenda-vacia p {
    margin: 8px 0 0;
    font-size: 18px;
    font-weight: bold;
    color: #475569;
}


.actividad img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}