.acceso-box {
    border-radius: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease-in-out;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 100px;
    backdrop-filter: blur(4px);
    border: 1px solid #e0e0e0;
}

.acceso-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.acceso-icono {
    font-size: 1.75rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: #f8f9fa;
    color: #007bff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.acceso-box:hover .acceso-icono {
    transform: scale(1.1) rotate(-2deg);
}

.acceso-titulo {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.acceso-subtitulo {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

@media (max-width: 576px) {
    .acceso-box {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
